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 minIndex[3];
minIndex[0] = minIndex[1] = minIndex[2] = 1;
while (true){
int ans = Theory(minIndex[0], minIndex[1], minIndex[2]);
if (ans == 0) return;
minIndex[ans - 1]++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |