Submission #1014602

#TimeUsernameProblemLanguageResultExecution timeMemory
1014602shubhamphpefyCluedo (IOI10_cluedo)C++17
100 / 100
7 ms356 KiB
#include "grader.h"
#include "cluedo.h"
 
void Solve()
{
	int a[3] = {1, 1, 1};
	for (;;) {
		int x = Theory(a[0], a[1], a[2]);
		if (x == 0)
			return;
		a[x-1]++;
	}
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...