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