# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
569383 | Aurora2005 | Cluedo (IOI10_cluedo) | C++14 | 0 ms | 0 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<bits/stdc++.h>
#include"cluedo.h";
using namespace std;
void Solve(){
int a=1,b=1,c=1;
for(;;){
int t = Theory(a,b,c);
if(t == 0) break;
else if(t == 1) a++;
else if(t == 2) b++;
else c++;
}
return;
}