# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
444813 | duckit70 | Cluedo (IOI10_cluedo) | C++14 | 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 "grader.h"
#include "cluedo.h"
void solve()
{
int m,l,w;
m=l=w=1;
int t=Theory(m,l,w);
if(t==0)
return;
else{
if(t==1) t=Theory(m+1,l,w);
else
if(t==2) t=Theory(m,l+1,w);
else t=Theory(m,l,w+1);
}
}