# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
819091 | vjudge1 | Bitaro the Brave (JOI19_ho_t1) | C++17 | 574 ms | 73288 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define ll long long
const int NMAX = 3069;
int vals[NMAX][NMAX];
int oscores[NMAX][NMAX];
bool iexist[NMAX];
bool jexist[NMAX];
int main() {
int I, J;
cin >> I >> J;
for (int i = 1; i <= I; i++) {
for (int j = 1; j <= J; j++) {
char v;
cin >> v;
if (v == 'J') {
vals[i][j] = 1;
iexist[i] = true;
jexist[j] = true;
} else if (v == 'I') {
vals[i][j] = 2;
} else {
vals[i][j] = 3;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |