Submission #342085

#TimeUsernameProblemLanguageResultExecution timeMemory
342085AlmaCluedo (IOI10_cluedo)C++14
0 / 100
3 ms492 KiB
#include <iostream> #include <cluedo.h> #include <grader.h> void Solve () { int M = 1; int L = 1; int W = 1; while (Theory (M, L, W) != 0) { if (Theory (M, L, W) == 1) { M++; } else if (Theory (M, L, W) == 2) { L++; } else { W++; } } Theory (M, L, W); return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...