| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1307619 | LBP139 | Cluedo (IOI10_cluedo) | C++20 | 6 ms | 372 KiB |
#include "grader.h"
#include "cluedo.h"
void Solve(){
int t;
int i=1;
int j=1;
int k=1;
while(i<=6){
t=Theory(i, j, k);
if(t==0){
return;
}
if(t==1){
i++;
}
if(t==2){
j++;
}
if(t==3){
k++;
}
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
