Submission #1038439

#TimeUsernameProblemLanguageResultExecution timeMemory
1038439ArthuroWichCrayfish scrivener (IOI12_scrivener)C++17
Compilation error
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(); }

Compilation message (stderr)

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