# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
587137 | usuyus | 웜뱃 (IOI13_wombats) | C++14 | 20062 ms | 19436 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "wombats.h"
#include <bits/stdc++.h>
using namespace std;
int R, C, H[5000][200], V[5000][200];
int ans[200][200];
bool calced[200];
void init(int _R, int _C, int _H[5000][200], int _V[5000][200]) {
R = _R, C = _C;
for (int i=0; i<R; i++) {
for (int j=0; j<C; j++) {
H[i][j] = _H[i][j];
V[i][j] = _V[i][j];
}
}
for (int i=0; i<C; i++) calced[i] = false;
}
void changeH(int P, int Q, int W) {
H[P][Q] = W;
for (int i=0; i<C; i++) calced[i] = false;
}
void changeV(int P, int Q, int W) {
V[P][Q] = W;
for (int i=0; i<C; i++) calced[i] = false;
컴파일 시 표준 에러 (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... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |