제출 #209693

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

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