# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
777836 | Minindu206 | Cluedo (IOI10_cluedo) | C++14 | 10 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 a = 1, b = 1, c = 1;
int x = Theory(a, b, c);
while(x)
{
if(x == 1)
a++;
if(x == 2)
b++;
if(x == 3)
c++;
x = Theory(a, b, c);
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |