| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1322750 | akneeka | Cluedo (IOI10_cluedo) | C++20 | 3 ms | 400 KiB |
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;
void Solve(){
int M = 1, L = 1, W = 1, ans;
while (true){
ans = Theory(M, L, W);
if (ans == 0){return;}
else if (ans == 1){M++;}
else if (ans == 2){L++;}
else if (ans == 3){W++;}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
