이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
#define endl "\n"
#define pii pair<int,int>
#define x first
#define y second
typedef long long int ll;
int N;
void Init() {
}
string ans="";
void TypeLetter(char L){
ans+=L;
}
void UndoCommands(int m){
if(m>=(int)ans.size()) {
ans="";
}
else{
ans.erase((int)ans.size()-m,(int)ans.size()-1);
}
}
char GetLetter(int P){
return ans[P-1];
}
/*
int main(){
TypeLetter('A');
TypeLetter('B');
TypeLetter('C');
GetLetter(1);
GetLetter(3);
UndoCommands(2);
cout<<GetLetter(1)<<endl;;
}
*/
# | 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... |