| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1284160 | muhammad-mutahir | 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 = 1;
int m = 1;
int l = 1;
int w = 1;
while(r != 0){
r = Theory(m,l,w);
if(r == 1){
m++;
}
else if(r == 2){
l++;
}
else{
w++;
}
}
return;
// if (r == 0) return;
// r = Theory(3,2,1);
// if (r == 0) return;
// r = Theory(4,4,4);
// if (r == 0) return;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
