제출 #777836

#제출 시각아이디문제언어결과실행 시간메모리
777836Minindu206Cluedo (IOI10_cluedo)C++14
100 / 100
10 ms208 KiB
#include "grader.h"
#include "cluedo.h"

void Solve(){
   int a = 1, b = 1, c = 1;
   int x = Theory(a, b, c);
   while(x)
   {
      if(x == 1)
         a++;
      if(x == 2)
         b++;
      if(x == 3)
         c++;
      x = Theory(a, b, c);
   }
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...