답안 #864231

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
864231 2023-10-22T09:14:08 Z gutzzy Cluedo (IOI10_cluedo) C++14
컴파일 오류
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std;

void Solve(){
    int murderer = 1;
    int location = 1;
    int weapon = 1;
    int ans = Theory(murderer,location,weapon);
    while(ans!=0){
        if(ans==1) murderer++;
        else if(ans==2) location++;
        else weapon++;
        
        ans = Theory(murderer,location,weapon);
    }
    return;
}

Compilation message

cluedo.cpp: In function 'void Solve()':
cluedo.cpp:8:15: error: 'Theory' was not declared in this scope
    8 |     int ans = Theory(murderer,location,weapon);
      |               ^~~~~~