Submission #1009709

#TimeUsernameProblemLanguageResultExecution timeMemory
1009709u_suck_oCluedo (IOI10_cluedo)C++17
100 / 100
7 ms596 KiB
#include "bits/stdc++.h" #include "grader.h" #include "cluedo.h" using namespace std; void Solve(){ int r; int a[4] = {-1, 1, 1, 1}; while (true) { r = Theory(a[1], a[2], a[3]); if (r == 0) break; a[r]++; } //if (a[1] == 3 && a[2] == 8 && a[3] == 6) cout << "hi"; //cout << "got: " << a[1] << " " << a[2] << " " << a[3] << "\n"; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...