# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
108216 | SecretAgent007 | Crayfish scrivener (IOI12_scrivener) | C++17 | 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 <bits/stdc++.h>
using namespace std;
#define int long long
vector< string > last;
string curr = "";
void Init(){
}
void TypeLetter(char c){
last.push_back(curr);
curr += c;
}
void UndoCommands(int n){
last.push_back(curr);
curr = last[last.size()-n-1];
}
char getLetter(int n){
return curr[n];
}