제출 #1350023

#제출 시각아이디문제언어결과실행 시간메모리
1350023ra4oCluedo (IOI10_cluedo)C++20
100 / 100
2 ms412 KiB
#include <bits/stdc++.h>
#define endl '\n'
#define ull unsigned long long int
#include "grader.h"
#include "cluedo.h"
using namespace std;
void speed()
{
    ios_base :: sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);
}
void Solve()
{
    int arr[3] = {1, 1, 1};
    while(true)
    {
        int q = Theory(arr[0], arr[1], arr[2]);
        if(q == 0) return;
        arr[q - 1]++;
    }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...