Submission #1175121

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