# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
717632 | AndrijaM | Cluedo (IOI10_cluedo) | C++14 | 16 ms | 256 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 r;
int x=1;
int y=1;
int z=1;
while(true)
{
r=Theory(x,y,z);
if(r==0)return;
if(r==1)x++;
if(r==2)y++;
if(r==3)z++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |