제출 #1307614

#제출 시각아이디문제언어결과실행 시간메모리
1307614LBP139Cluedo (IOI10_cluedo)C++20
0 / 100
1 ms384 KiB
#include "grader.h" #include "cluedo.h" void Solve(){ int t; for(int i=1;i<=6;i++){ for(int j=1;j<=10;j++){ for(int k=1;k<=6;k++){ t=Theory(i, j, k); if(t==0){ return; } if(t==1){ j--; k--; } if(t==2){ i--; k--; } if(t==3){ i--; j--; } } } } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...