제출 #706255

#제출 시각아이디문제언어결과실행 시간메모리
706255SamNguyenCluedo (IOI10_cluedo)C++14
100 / 100
15 ms208 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;

void Solve(){
	int x = 1, y = 1, z = 1;
	while (true) {
		int err = Theory(x, y, z);
		if (err == 0)
			return;
		if (err == 1)
			x++;
		if (err == 2)
			y++;
		if (err == 3)
			z++;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...