제출 #231575

#제출 시각아이디문제언어결과실행 시간메모리
231575UserIsUndefinedCluedo (IOI10_cluedo)C++14
100 / 100
17 ms384 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int r; int a,b,c; a = b = c = 1; while(true){ r = Theory(a,b,c); if (r == 0)return; if (r == 1)a++; if (r == 2)b++; if (r == 3)c++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...