| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1361568 | ziyad_alharbi | 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 m=1,l=1,w=1;
while(true)
{
int cn=Theory(m,l,w);
if(!cn)return;
if(cn==1)m++;
if(cn==2)l++;
if(cn==3)w++;
}
}
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
