# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
717645 | AnjaJ | Cluedo (IOI10_cluedo) | C++14 | 14 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 murd=1, loc=1, weap=1;
int th;
while(true)
{
th = Theory(murd, loc, weap);
if(th==1)
murd++;
else if(th==2)
loc++;
else if(th==3)
weap++;
else
return;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |