제출 #1311176

#제출 시각아이디문제언어결과실행 시간메모리
1311176pwalCluedo (IOI10_cluedo)C++20
100 / 100
4 ms384 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);
}
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…