제출 #1141205

#제출 시각아이디문제언어결과실행 시간메모리
1141205groshiCluedo (IOI10_cluedo)C++20
100 / 100
3 ms408 KiB
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
#define int long long
using namespace std;
void Solve()
{
    //cin.tie(0);
    //cout.tie(0);
    //ios_base::sync_with_stdio(0);
    int t[4]={0,1,1,1};
    while(true)
    {
        int co=Theory(t[1],t[2],t[3]);
        if(co==0)
            break;
        t[co]++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...