제출 #316895

#제출 시각아이디문제언어결과실행 시간메모리
316895nandonathanielCluedo (IOI10_cluedo)C++14
100 / 100
11 ms512 KiB
#include "grader.h" #include "cluedo.h" #include "bits/stdc++.h" using namespace std; void Solve(){ int x=1,y=1,z=1; while(x<=6 && y<=10 && z<=6){ int ret=Theory(x,y,z); if(ret==0)break; if(ret==1)x++; else if(ret==2)y++; else z++; } return; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...