| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1364952 | stanirina | Cluedo (IOI10_cluedo) | C++20 | 2 ms | 412 KiB |
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
int a=1,b=1,c=1;
while(a<7 && b<11 && c<7){
int r=Theory(a,b,c);
if(r==0)return;
if(r==1)a++;
if(r==2)b++;
if(r==3)c++;
}
return;
}
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
