# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
715497 | vjudge1 | Cluedo (IOI10_cluedo) | C++17 | 16 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 r;
int a = 1 , b = 1 , c = 1;
while(1)
{
int oc = Theory(a, b, c);
if( oc == 1) a++;
else if( oc == 2) b++;
else if( oc == 3) c++;
else break;
}
return;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |