답안 #643196

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
643196 2022-09-21T12:59:36 Z Trisanu_Das Cluedo (IOI10_cluedo) C++17
0 / 100
1 ms 292 KB
#include <bits/stdc++.h>
#include "grader.h"
#include "cluedo.h"
using namespace std;

void Solve(){
  int theory[3] = {1, 1, 1}; // current theory
  int i = Theory(theory[0], theory[1], theory[2]);
  while(i){
    theory[i]++; //changing our theory according to report given
    i = Theory(theory[0], theory[1], theory[2]); 
  }
}
# 결과 실행 시간 메모리 Grader output
1 Failed 1 ms 292 KB wrong parameter
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Failed 1 ms 208 KB wrong parameter
2 Halted 0 ms 0 KB -