제출 #1361568

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