이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "grader.h"
#include "cluedo.h"
void Solve(){
int r, a = 1, b = 1, c = 1, ok = 0;
while(ok != 1){
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++;
}
ok = 1;
}
}
컴파일 시 표준 에러 (stderr) 메시지
cluedo.cpp: In function 'void Solve()':
cluedo.cpp:7:12: warning: 'r' is used uninitialized in this function [-Wuninitialized]
7 | while(r == 1){
| ~~^~~~
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |