제출 #1002581

#제출 시각아이디문제언어결과실행 시간메모리
1002581feukicCluedo (IOI10_cluedo)C++14
100 / 100
7 ms344 KiB
#include "grader.h"
#include "cluedo.h"

using namespace std;

void Solve() {
    int a = 1, b = 1, c = 1;

    int result = Theory(a, b, c);
    while (result) {
        if (result == 1) {
            a++;
        } else if (result == 2) {
            b++;
        } else {
            c++;
        }

        result = Theory(a, b, c);
    }

    return;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…