제출 #598611

#제출 시각아이디문제언어결과실행 시간메모리
598611MounirCluedo (IOI10_cluedo)C++14
100 / 100
15 ms208 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int minIndex[3]; minIndex[0] = minIndex[1] = minIndex[2] = 1; while (true){ int ans = Theory(minIndex[0], minIndex[1], minIndex[2]); if (ans == 0) return; minIndex[ans - 1]++; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...