| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1311176 | pwal | Cluedo (IOI10_cluedo) | C++20 | 4 ms | 384 KiB |
int Theory(int M,int L,int W);
void Solve()
{
int m=1,l=1,w=1;
int res=Theory(m,l,w);
while(res!=0)
{
if(res==1)++m;
else if(res==2)++l;
else ++w;
res=Theory(m,l,w);
}
}| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
| # | 결과 | 실행 시간 | 메모리 | 채점기 출력 |
|---|---|---|---|---|
| 결과를 불러오는 중입니다… | ||||
