제출 #1307619

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