Submission #335357

#TimeUsernameProblemLanguageResultExecution timeMemory
335357blueCrayfish scrivener (IOI12_scrivener)C++11
Compilation error
0 ms0 KiB
#include "scrivener.h"
using namespace std;

string S;

void Init()
{
    ;
}

void TypeLetter(char L)
{
    S.push_back(L);
}

void UndoCommands(int U)
{
    ;
}

char GetLetter(int P)
{
    return S[P];
}

Compilation message (stderr)

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