제출 #867849

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