| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1284194 | ggillianjiang | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 384 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int p1 = 1, p2 = 1, p3 = 1;
while (1) {
int t = Theory(p1,p2,p3);
if(t == 1) p1++;
if(t == 2) p2++;
if(t == 3) p3++;
if(t == 0) break;
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
