제출 #1367930

#제출 시각아이디문제언어결과실행 시간메모리
1367930tullCluedo (IOI10_cluedo)C++20
100 / 100
3 ms412 KiB
#include "grader.h"
#include "cluedo.h"
#include <bits/stdc++.h>
using namespace std;
void Solve(){
   int a[]={0,1,1,1};
   int d=Theory(a[1],a[2],a[3]);
   while (d!=0)
   {
      ++a[d];
      d=Theory(a[1],a[2],a[3]);
   }
   return;
}
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…
#결과 실행 시간메모리채점기 출력
결과를 불러오는 중입니다…