제출 #1112764

#제출 시각아이디문제언어결과실행 시간메모리
1112764enzyCluedo (IOI10_cluedo)C++14
100 / 100
19 ms508 KiB
#include "grader.h"
#include "cluedo.h"
#include<bits/stdc++.h>
using namespace std;
void Solve(){
    int a=1, b=1, c=1;
    while(true){
        int r=Theory(a,b,c);
        if(r==0) return;
        if(r==1) a++;
        if(r==2) b++;
        if(r==3) c++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...