| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1296906 | orgiloogii | Cluedo (IOI10_cluedo) | C++20 | 5 ms | 388 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int r;
int m = 1, l = 1, w = 1;
while (true) {
r = Theory(m, l, w);
if (r == 0) {
return;
}
if (r == 1) {
m++;
}
if (r == 2) {
l++;
}
if (r == 3) {
w++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
