# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1141203 | groshi | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include<bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
#define int long long
using namespace std;
int32_t main()
{
//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]++;
}
return 0;
}