| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 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);
}
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
