제출 #1175107

#제출 시각아이디문제언어결과실행 시간메모리
1175107tawwieCluedo (IOI10_cluedo)C++20
100 / 100
3 ms392 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int m = 1, l = 1, w = 1; int r = Theory(m, l, w); while(r){ if(r == 1) m++; if(r == 2) l++; if(r == 3) w++; r = Theory(m, l, w); } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...