# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
715538 | vjudge1 | Cluedo (IOI10_cluedo) | C++17 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
void Solve()
{
for(int a=1;a<=6;a++)
{
for(int b=1;b<=10;b++)
{
for(int c=1;c<=6;c++)
{
if (Theory(a,b,c)==0)
{
return;
}
}
}
}
}