제출 #990525

#제출 시각아이디문제언어결과실행 시간메모리
990525Lib게임 (IOI14_game)C++14
컴파일 에러
0 ms0 KiB
#include <"game.h"> #include <bits/stdc++.h> using namespace std; int q[10003]; int N; void initialize(int n){ N=n; } int hasEdge(int u, int v){ q[u]++; q[v]++; return (q[u]==N||q[v]==N); }

컴파일 시 표준 에러 (stderr) 메시지

game.cpp:1:10: fatal error: "game.h": No such file or directory
    1 | #include <"game.h">
      |          ^~~~~~~~~~
compilation terminated.