제출 #545590

#제출 시각아이디문제언어결과실행 시간메모리
545590jam_xd_Cluedo (IOI10_cluedo)C++17
0 / 100
1 ms208 KiB
#include "grader.h"
#include "cluedo.h"
#include "bits/stdc++.h"

using namespace std;

void Solve(){
   int murderer, location, weapon; murderer = location = weapon = 1;
   int wrong = -1;
  
  while(wrong != 0){
    wrong = Theory(murderer, location, weapon);
    if(wrong == 1)wrong++;
    if(wrong == 2)location++;
    if(wrong == 3)weapon++;
  }
 return;  
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...