# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
897218 | duckindog | Bitaro the Brave (JOI19_ho_t1) | C++14 | 120 ms | 80116 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
// from duckindog wth depression
#include<bits/stdc++.h>
using namespace std;
const int N = 3e3 + 10;
int h, w;
char a[N][N];
int fi[N][N], fo[N][N];
int32_t main() {
cin.tie(0)->sync_with_stdio(0);
if (fopen("duck.inp", "r")) {
freopen("duck.inp", "r", stdin);
freopen("duck.out", "w", stdout);
}
cin >> h >> w;
for (int i = 1; i <= h; ++i) {
string s; cin >> s;
for (int j = 1; j <= w; ++j) a[i][j] = s[j - 1];
}
for (int j = 1; j <= w; ++j)
for (int i = 1; i <= h; ++i) fi[i][j] = fi[i - 1][j] + (a[i][j] == 'I');
for (int i = 1; i <= h; ++i)
for (int j = 1; j <= w; ++j) fo[i][j] = fo[i][j - 1] + (a[i][j] == 'O');
long long answer = 0;
for (int i = 1; i <= h; ++i) {
for (int j = 1; j <= w; ++j) {
if (a[i][j] != 'J') continue;
int O = fo[i][w] - fo[i][j - 1];
int I = fi[h][j] - fi[i - 1][j];
answer = answer + 1ll * O * I;
}
}
cout << answer;
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |