Submission #1214474

#TimeUsernameProblemLanguageResultExecution timeMemory
1214474adriines06Cluedo (IOI10_cluedo)C++20
100 / 100
3 ms396 KiB
#include "grader.h" #include "cluedo.h" using namespace std; void Solve(){ int r; int a=1,b=1,c=1; r = Theory(a,b,c); while(r!=0){ if (r == 1) a++; if (r == 2) b++; if (r == 3) c++; r = Theory(a,b,c); } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...