이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
int it = 0;
char last;
string a[1000000];
void Init() {
}
void TypeLetter(char L) {
if(it != 0) a[it] += a[it-1];
last = L;
a[it] += last;
//cout<<it<<" "<<a[it]<<endl;
it++;
}
void UndoCommands(int U) {
a[it] = a[it-U-1];
//cout<<it<<" "<<a[it]<<endl;
it++;
}
char GetLetter(int P) {
//cout<<it<<" "<<a[it-1]<<endl;
last = a[it-1][P];
return last;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |