Submission #1013550

#TimeUsernameProblemLanguageResultExecution timeMemory
1013550ByeWorldCluedo (IOI10_cluedo)C++14
100 / 100
8 ms344 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int r = -1; int x=1, y=1, z=1; while(true){ r = Theory(x,y,z); if(r==1) x++; else if(r==2) y++; else if(r==3) z++; else break; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...