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"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> pii;
void Solve(){
int i = 1, j = 1, k = 1;
while (true) {
// cout << i << ' ' << j << ' ' << k << endl;
int r = Theory(i, j, k);
if (r == 0) return;
if (r == 1) {
i++;
} else if (r == 2) {
j++;
} else {
k++;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |