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