제출 #1323647

#제출 시각아이디문제언어결과실행 시간메모리
1323647adiyerCluedo (IOI10_cluedo)C++20
100 / 100
3 ms384 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int x = 1, y = 1, z = 1; while(1){ int s = Theory(x, y, z); if(s == 1) x++; else if(s == 2) y++; else if(s == 3) z++; else return; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...