| # | Time | Username | Problem | Language | Result | Execution time | Memory |
|---|---|---|---|---|---|---|---|
| 335357 | blue | Crayfish scrivener (IOI12_scrivener) | C++11 | 0 ms | 0 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#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];
}
