Submission #1227702

#TimeUsernameProblemLanguageResultExecution timeMemory
1227702Hamed_GhaffariCluedo (IOI10_cluedo)C++20
100 / 100
3 ms408 KiB
#include "grader.h" #include "cluedo.h" #include <bits/stdc++.h> void Solve(){ int r; int a=1, b=1, c=1; while(1) { r = Theory(a, b, c); if(r==0) break; if(r==1) a++; else if(r==2) b++; else if(r==3) c++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...