Submission #1175141

#TimeUsernameProblemLanguageResultExecution timeMemory
1175141bbbn_bCluedo (IOI10_cluedo)C++20
100 / 100
3 ms392 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ /*int r; r = Theory(1,2,3); if (r == 1) return; r = Theory(3,2,1); if (r == 0) return; r = Theory(4,4,4); if (r == 0) return;*/ int m = 1,l=1,w=1; int r = Theory(m,l,w); while(r != 0){ if(r == 1) m++; else if(r == 2) l++; else if(r == 3) w++; r = Theory(m,l,w); } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...