# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
586838 | benjaminkleyn | 미술 수업 (IOI13_artclass) | C++17 | 56 ms | 3288 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 long long ll;
int style(int h, int w, int r[500][500], int g[500][500], int b[500][500])
{
ll sumz = 0;
for (int i = 0; i < h; i++)
for (int j = 0; j < w; j++)
sumz += g[i][j];
if (sumz > h * w * 100)
return 2;
return 1;
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |