Submission #637466

# Submission time Handle Problem Language Result Execution time Memory
637466 2022-09-02T00:37:07 Z ram Cluedo (IOI10_cluedo) C++14
Compilation error
0 ms 0 KB
#include <bits/stdc++.h>
using namespace std; 

int 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

cluedo.cpp: In function 'int solve()':
cluedo.cpp:5:19: error: 'w' was not declared in this scope
    5 | int m = 1, l = 1; w = 1, c = -1;
      |                   ^
cluedo.cpp:5:26: error: 'c' was not declared in this scope
    5 | int m = 1, l = 1; w = 1, c = -1;
      |                          ^
cluedo.cpp:7:5: error: 'Theory' was not declared in this scope
    7 | c = Theory(m, l, w);
      |     ^~~~~~
cluedo.cpp:13:1: error: return-statement with no value, in function returning 'int' [-fpermissive]
   13 | return;
      | ^~~~~~