제출 #915524

#제출 시각아이디문제언어결과실행 시간메모리
915524SoSmolStenCluedo (IOI10_cluedo)C++14
0 / 100
1 ms344 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
	int g[] = {1, 1, 1};
	int i = Theory(g[0], g[1], g[2]);
	while(i){
		++g[i];
		i = Theory(g[0], g[1], g[2]);
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...