제출 #1267009

#제출 시각아이디문제언어결과실행 시간메모리
1267009ti24dung_ntCluedo (IOI10_cluedo)C++20
컴파일 에러
0 ms0 KiB
#include<grader.h> #include<cluedo.h> void Solve() { bool found = false; int murd = 1, loca = 1, weap = 1; while(found == false) { cout << "Theory(" << murd << "," << loca << "," << weap << ")" << endl; cout.flush(); int type; cin >> type; if(type == 0) { found = true; } else if(type == 1) { if(murd < 6) ++murd; } else if(type == 2) { if(loca < 10) ++loca; } else { if(weap < 6) ++weap; } } return 0; }

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

cluedo.cpp:1:9: fatal error: grader.h: No such file or directory
    1 | #include<grader.h>
      |         ^~~~~~~~~~
compilation terminated.