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 curx, cury, curz;
curx = curz = cury = 1;
while(true){
int o = Theory(curx, cury, curz);
if(!o) break;
if(o == 1) curx++;
if(o == 2) cury++;
if(o == 3) curz++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |