Submission #1280297

#TimeUsernameProblemLanguageResultExecution timeMemory
1280297tdd209Cluedo (IOI10_cluedo)C++20
100 / 100
4 ms404 KiB
#include <bits/stdc++.h> #include "grader.h" #include "cluedo.h" void Solve() { int m = 6, l = 10, w = 6; while (true) { int r = Theory(m, l, w); if (r == 0) return; if (r == 1) --m; else if (r == 2) --l; else --w; } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...