Submission #372743

#TimeUsernameProblemLanguageResultExecution timeMemory
372743Drew_Cluedo (IOI10_cluedo)C++14
100 / 100
10 ms380 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
	int a = 1, b = 1, c = 1;
	int r = -1;
	while (r != 0)
	{
		r = Theory(a, b, c);
		if (r == 1) a++;
		if (r == 2) b++;
		if (r == 3) c++;
	}
	return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...