제출 #390275

#제출 시각아이디문제언어결과실행 시간메모리
390275MilosMilutinovicCluedo (IOI10_cluedo)C++14
컴파일 에러
0 ms0 KiB
/** * author: milos * created: 15.04.2021 20:03:19 **/ #include <bits/stdc++.h> #include "cleudo.h" using namespace std; void Solve() { int x = 1, y = 1, z = 1; while (true) { int foo = Theory(x, z, y); if (foo == 0) break; if (foo == 1) x++; if (foo == 2) y++; if (foo == 3) z++; } }

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

cluedo.cpp:6:10: fatal error: cleudo.h: No such file or directory
    6 | #include "cleudo.h"
      |          ^~~~~~~~~~
compilation terminated.