Submission #1276781

#TimeUsernameProblemLanguageResultExecution timeMemory
1276781sagnbaevvCluedo (IOI10_cluedo)C++20
100 / 100
4 ms384 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int i = 1, j = 1, k = 1; while (true) { int ans = Theory(i, j, k); if (ans == 0) { return; } else if (ans == 1) { i++; } else if (ans == 2) { j++; } else { k++; } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...