제출 #1328201

#제출 시각아이디문제언어결과실행 시간메모리
1328201Zone_zoneeCluedo (IOI10_cluedo)C++20
100 / 100
3 ms396 KiB
#include "grader.h"
#include "cluedo.h"
#include <vector>
using namespace std;

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