제출 #1347880

#제출 시각아이디문제언어결과실행 시간메모리
1347880sash01Cluedo (IOI10_cluedo)C++20
100 / 100
2 ms348 KiB
#include <bits/stdc++.h>
#include "cluedo.h"
#include "grader.h"
using namespace std;
int a[4];
void Solve()
{
    a[1]=1;
    a[2]=1;
    a[3]=1;
    while(1)
    {
        int ans=Theory(a[1],a[2],a[3]);
        if(ans==0)return;
        a[ans]++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...