제출 #495521

#제출 시각아이디문제언어결과실행 시간메모리
495521PiejanVDCCluedo (IOI10_cluedo)C++17
100 / 100
12 ms280 KiB
#include <bits/stdc++.h>
using namespace std;

#include "grader.h"
#include "cluedo.h"

void Solve() {
    int a=1,b=1,c=1;
    while(true) {
        int x = Theory(a,b,c);
        if(x == 0) return;
        if(x == 1) a++;
        if(x == 2) b++;
        if(x == 3) c++;
    }
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…