# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
206968 | oko | 미술 수업 (IOI13_artclass) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include<bits/stdc++.h>
#include "artclass.h"
using namespace std;
const long long mod=1e9+7;
int style(int H, int W, int R[500][500], int G[500][500], int B[500][500])
{
int n=H,m=W;
sum=0;
for(int i=0;i<n;i++)
{
for(int j=0;j<m;j++)
{
sum+=(R[i][j]-R[i][j-1])+(R[i][j]-R[i-1][j])+(B[i][j]-B[i][j-1])+(B[i][j]-B[i-1][j])+(G[i][j]-G[i][j-1])+(G[i][j]-G[i-1][j]);
}
}
sum/=n*m;
if(sum<=25)return 4;
if(sum>=100)return 3;
if(sum>=50)return 1;
return 1;
}