제출 #434282

#제출 시각아이디문제언어결과실행 시간메모리
434282Icebear16Cluedo (IOI10_cluedo)C++14
컴파일 에러
0 ms0 KiB
#include "cluedo.h" #include "grader.cpp" #include "cluedo.h" #include "grader.in.1" #include <bits/stdc++.h> using namespace std; /* run this program using the console pauser or add your own getch, system("pause") or input loop */ void solve(){ int r,i=1,k=1,j=1; BEGIN: r=Theory(i,k,j); if(r==0){ return; }else if(r==1){ i+=1; goto BEGIN; }else if(r==2){ k+=1; goto BEGIN; }else if(r==3){ j+=1; goto BEGIN; } }

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

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