| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 1311175 | pwal | Cluedo (IOI10_cluedo) | C++20 | 0 ms | 0 KiB |
void Solve()
{
int m=1,l=1,w=1;
int res=Theory(m,l,w);
while(res!=0)
{
if(res==1)++m;
else if(res==2)++l;
else ++w;
res=Theory(m,l,w);
}
}
