Submission #488487

#TimeUsernameProblemLanguageResultExecution timeMemory
488487M_WCluedo (IOI10_cluedo)C++14
100 / 100
13 ms200 KiB
#include <bits/stdc++.h> #include "grader.h" using namespace std; void Solve(){ int a = 1, b = 1, c = 1; while(true){ int k = Theory(a, b, c); if(k == 0) return; if(k == 1) a++; if(k == 2) b++; if(k == 3) c++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...