提交时间:2023-12-30 11:31:36
运行 ID: 118451
#include<bits/stdc++.h> using namespace std; char s[5201314]; int tot=0; bool empty(){ return tot==0; } void push(char t){ s[tot++]=t; } void pop(){ if(!empty()) tot--; } void pop1(){ tot=0; } int main(){ char t; while(cin >> t){ if(t=='#') pop(); else if(t=='@') pop1(); else push(t); } for(int i=0;i<tot;i++){ cout << s[i]; } return 0; }