제출 #637467

#제출 시각아이디문제언어결과실행 시간메모리
637467ramCluedo (IOI10_cluedo)C++14
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h>
#include "cluedo.h"
using namespace std; 

void solve() {
int m = 1, l = 1, w = 1, c = -1;
while (true) {
c = Theory(m, l, w);
if (c == 0) break;
if (c == 1) m++;
else if (c == 2) l++;
else w++;
}
return;
}

컴파일 시 표준 에러 (stderr) 메시지

cluedo.cpp: In function 'void solve()':
cluedo.cpp:8:5: error: 'Theory' was not declared in this scope
    8 | c = Theory(m, l, w);
      |     ^~~~~~