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