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