# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
474007 | ValiAntonie | Cluedo (IOI10_cluedo) | C++14 | 2 ms | 200 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
void Solve(){
int r, a = 1, b = 1, c= 1, ok = 0;
while(ok != 1){
r = Theory(a,b,c);
if (r == 0){
ok = 1;
return;
}
while(r == 1){
r = Theory(a,b,c);
a++;
}
while(r == 2){
r = Theory(a,b,c);
b++;
}
while(r == 3){
r = Theory(a,b,c);
c++;
}
}
}
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |