Submission #384079

#TimeUsernameProblemLanguageResultExecution timeMemory
384079MODDIGame (IOI14_game)C++14
Compilation error
0 ms0 KiB
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 (stderr)

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