比赛 20231005 评测结果 AAAAAEEEEE
题目名称 高级打字机 最终得分 50
用户昵称 ┭┮﹏┭┮ 运行时间 1.013 s
代码语言 C++ 内存使用 4.08 MiB
提交时间 2023-10-05 10:22:07
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;
const int N = 1e5+10; 
char c[N];
int tot,n;
int main(){
    freopen("type.in","r",stdin);
    freopen("type.out","w",stdout);
    scanf("%d",&n);
    for(int i = 1;i <= n;i++){
        char ch[2],cc[2];
        int x = 0;
        scanf("%s",ch);
        if(ch[0] == 'T'){
            scanf("%s",cc);
            c[++tot] = cc[0];
        }
        else if(ch[0] == 'Q'){
            scanf("%d",&x);
            printf("%c\n",c[x]);
        }
        else{
            scanf("%d",&x);
            tot -= x;
        }
    }
    
    return 0;
    
}