比赛 | 20231005 | 评测结果 | AAAAAEEEEE |
---|---|---|---|
题目名称 | 高级打字机 | 最终得分 | 50 |
用户昵称 | 宇战 | 运行时间 | 1.143 s |
代码语言 | C++ | 内存使用 | 5.35 MiB |
提交时间 | 2023-10-05 10:38:33 | ||
#include<bits/stdc++.h> using namespace std; int n,m; char a[1000010]; int tot=0; int main(){ freopen("type.in","r",stdin); freopen("type.out","w",stdout); cin>>n; for(int i=1;i<=n;i++){ char x; char y; int s; cin>>x; if(x=='T'){ cin>>y; a[++tot]=y; } if(x=='U'){ cin>>s; tot-=s; } if(x=='Q'){ cin>>s; cout<<a[s]<<endl; } } return 0; }