# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
712836 | Salty | Cluedo (IOI10_cluedo) | C++14 | 11 ms | 208 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 x,y,z;
x=y=z=1;
for(int i=0;i<20;i++)
{
int check=Theory(x,y,z);
if(check==1)x++;
else if(check==2)y++;
else if(check==3)z++;
else return;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |