# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
756934 | DJeniUp | Art Class (IOI13_artclass) | C++17 | 62 ms | 6060 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 "artclass.h"
#include "bits/stdc++.h"
using namespace std;
typedef int ll;
ll a,b,c;
int style(int N, int M, int R[500][500], int G[500][500], int B[500][500]) {
for(int i=0;i<N;i++){
for(int j=0;j<M;j++){
a+=R[i][j];
b+=G[i][j];
c+=B[i][j];
}
}
if(b>a)return 2;
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |