Submission #1238040

#TimeUsernameProblemLanguageResultExecution timeMemory
1238040ema_nicoleCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 KiB
#include "cluedo.h" void solve() { int om = 1, room = 1, weapon = 1; while(1) { int nr = Theory(om, room, weapon); cnt++; //cout << om << " " << room << " " << weapon << " " << nr << '\n'; if(!nr) return; if(nr == 1) ///om gresit om++; else if(nr == 2) ///camera gresita room++; else if(nr == 3) ///weapon gresit weapon++; } }

Compilation message (stderr)

cluedo.cpp: In function 'void solve()':
cluedo.cpp:6:18: error: 'Theory' was not declared in this scope
    6 |         int nr = Theory(om, room, weapon);
      |                  ^~~~~~
cluedo.cpp:7:9: error: 'cnt' was not declared in this scope; did you mean 'int'?
    7 |         cnt++;
      |         ^~~
      |         int