| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1350022 | ra4o | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#define int long long
#define endl '\n'
#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]++;
}
}
