이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
/**
* author: milos
* created: 15.04.2021 20:03:19
**/
#include <bits/stdc++.h>
#include "cluedo.h"
#include "grader.h"
using namespace std;
void Solve() {
int x = 1, y = 1, z = 1;
while (true) {
int foo = Theory(x, y, z);
if (foo == 0) break;
if (foo == 1) x++;
if (foo == 2) y++;
if (foo == 3) z++;
}
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |