제출 #1266519

#제출 시각아이디문제언어결과실행 시간메모리
1266519codergCluedo (IOI10_cluedo)C++20
0 / 100
0 ms408 KiB
#include "cluedo.h"
#include <bits/stdc++.h>
#include "grader.h"
using namespace std;

void Solve(){
    int i=1,j=1,k=1;
    while(true){
     int x=Theory(i,j,k);
     if(x==0)return;
     if(x==1)i++;
     if(x==2)j++;
     else k++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...