이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "bits/stdc++.h"
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
int r;
int a[4] = {-1, 1, 1, 1};
while (true) {
r = Theory(a[1], a[2], a[3]);
if (r == 0) break;
a[r]++;
}
//if (a[1] == 3 && a[2] == 8 && a[3] == 6) cout << "hi";
//cout << "got: " << a[1] << " " << a[2] << " " << a[3] << "\n";
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |