| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1347879 | sash01 | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
#include <bits/stdc++.h>
#include "cluedo.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]++;
}
}
