이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
void Solve(){
int person = 1;
int location = 1;
int weapon = 1;
while (true) {
int r = Theory(person, location, weapon);
if (r == 0) {
break;
}
if (r == 1) {
person++;
}
if (r == 2) {
location++;
}
if (r == 3) {
weapon++;
}
}
return;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |