# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
99000 | ainta | Bitaro the Brave (JOI19_ho_t1) | C++17 | 321 ms | 47228 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<cstdio>
#include<algorithm>
char p[3010][3010];
int w[3010][3010];
long long res;
int n, m;
int main() {
int i, j;
scanf("%d%d", &n, &m);
for (i = 1; i <= n; i++) {
scanf("%s", p[i] + 1);
}
for (i = 1; i <= n; i++) {
int c = 0;
for (j = m; j >= 1; j--) {
if (p[i][j] == 'O')c++;
if (p[i][j] == 'J')w[i][j] = c;
}
}
for (i = 1; i <= m; i++) {
int c = 0;
for (j = n; j >= 1; j--) {
if (p[j][i] == 'I')c++;
if (p[j][i] == 'J')res += w[j][i] * c;
}
}
printf("%lld\n", res);
}
컴파일 시 표준 에러 (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... |