Submission #637467

#TimeUsernameProblemLanguageResultExecution timeMemory
637467ramCluedo (IOI10_cluedo)C++14
Compilation error
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;
}

Compilation message (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);
      |     ^~~~~~