| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1323647 | adiyer | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 384 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int x = 1, y = 1, z = 1;
while(1){
int s = Theory(x, y, z);
if(s == 1) x++;
else if(s == 2) y++;
else if(s == 3) z++;
else return;
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
