Submission #384079

# Submission time Handle Problem Language Result Execution time Memory
384079 2021-03-31T11:42:30 Z MODDI Game (IOI14_game) C++14
Compilation error
0 ms 0 KB
include "game.h"
void initialize(int n) {
// DO NOTHING!
}
int c[1500];
int hasEdge(int u, int v) {
return ++c[u > v ? u : v] == (u > v ? u : v);
}

Compilation message

game.cpp:1:1: error: 'include' does not name a type
    1 | include "game.h"
      | ^~~~~~~