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, a = 1, b = 1, c= 1, ok = 0;
while(ok != 1){
r = Theory(a,b,c);
if (r == 0){
ok = 1;
return;
}
while(r == 1){
a++;
r = Theory(a,b,c);
}
while(r == 2){
b++;
r = Theory(a,b,c);
}
while(r == 3){
c++;
r = Theory(a,b,c);
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |