| Problem | cpicgame |
|---|---|
| User | Killervinsen |
| Submission Time | 2026-06-23 10:36:36 |
| Score | 0 |
| Max Time | N/A |
| Max Memory | N/A |
Owl Get a Life
cpicgame.cpp:7:1: error: expected unqualified-id before ‘:’ token
7 | :
| ^
cpicgame.cpp: In function ‘int get_winner(long long int, long long int, bool)’:
cpicgame.cpp:19:28: error: ‘y_states’ was not declared in this scope
19 | int y_idx = get_idx(y, y_states);
| ^~~~~~~~
cpicgame.cpp:20:28: error: ‘r_states’ was not declared in this scope
20 | int r_idx = get_idx(r, r_states);
| ^~~~~~~~
cpicgame.cpp:23:9: error: ‘memo’ was not declared in this scope
23 | if (memo[y_idx][r_idx][turn] != 0) {
| ^~~~
cpicgame.cpp:28:5: error: ‘memo’ was not declared in this scope
28 | memo[y_idx][r_idx][turn] = 1;
| ^~~~
cpicgame.cpp: In function ‘int main()’:
cpicgame.cpp:50:26: error: ‘y_states’ was not declared in this scope
50 | while (temp_y > 0) { y_states.push_back(temp_y); temp_y /= 2; }
|