제출 #885299

#제출 시각아이디문제언어결과실행 시간메모리
88529912345678Cluedo (IOI10_cluedo)C++17
100 / 100
6 ms344 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int a[3];
   a[0]=a[1]=a[2]=1;
   while (1)
   {
      int x=Theory(a[0], a[1], a[2]);
      if (x==0) break;
      a[x-1]++;
   }
   return;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...