Submission #296642

#TimeUsernameProblemLanguageResultExecution timeMemory
296642williamMBDKArt Class (IOI13_artclass)C++14
0 / 100
83 ms9080 KiB
#include<bits/stdc++.h>
using namespace std;
#include "artclass.h"
int H, W, R[500][500], G[500][500], B[500][500];
int style(int _H, int _W, int _R[500][500], int _G[500][500], int _B[500][500]) {
	H = _H;
	W = _W;
	for(int i = 0; i < H; i++){
		for(int j = 0; j < W; j++){
			R[i][j] = _R[i][j];
			G[i][j] = _G[i][j];
			B[i][j] = _B[i][j];
		}
	}
	return 1;
}
#Verdict Execution timeMemoryGrader output
Fetching results...