제출 #598774

#제출 시각아이디문제언어결과실행 시간메모리
598774HanksburgerCluedo (IOI10_cluedo)C++17
50 / 100
15 ms224 KiB
#include "cluedo.h"
#include "grader.h"
#include <bits/stdc++.h>
using namespace std;
void Solve()
{
    int a=1, b=1, c=1, x=Theory(1, 1, 1);
    while (x)
    {
        if (x==1)
            a++;
        else if (x==2)
            b++;
        else
            c++;
        x=Theory(a, b, c);
    }
    Theory(a, b, c);
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…