提交时间:2024-04-06 09:28:33

运行 ID: 141654

#include<bits/stdc++.h> using namespace std; char sta[1000005]; int tot; int main(){ string s; getline(cin,s); for(int i=0;i<s.size();i++){ if(s[i]!='#'&&s[i]!='@')sta[++tot] = s[i]; else if(s[i]=='#'){ if(tot==0){ continue; } tot--; }else{ tot=0; } } for(int i=1;i<=tot;i++){ cout<<sta[i]; } return 0; }