제출 #1038439

#제출 시각아이디문제언어결과실행 시간메모리
1038439ArthuroWich크레이피쉬 글쓰는 기계 (IOI12_scrivener)C++17
컴파일 에러
0 ms0 KiB
#include "grader.h" #include<bits/stdc++.h> using namespace std; int co = 0; string a[1000005]; void Init() {}; void TypeLetter(char L) { co++; a[co].push_back(L); } void UndoCommands(int U) { co++; a[co] = a[co-1-U]; } char GetLetter(int P) { return a[co].back(); }

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

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