比赛 |
20241022 |
评测结果 |
AAAAAAAAAA |
题目名称 |
解压缩 |
最终得分 |
100 |
用户昵称 |
Davinci |
运行时间 |
0.031 s |
代码语言 |
C++ |
内存使用 |
3.40 MiB |
提交时间 |
2024-10-22 10:47:35 |
显示代码纯文本
#include<iostream>
#include<cstdio>
using namespace std;
int a[505];
string s[505];
char c;
int d1,d2;
int top;
int main(){
freopen("extract.in","r",stdin);
freopen("extract.out","w",stdout);
while(cin>>c){
if(c>='0'&&c<='9'){
a[top]=a[top]*10+(c-'0');
}
if(c>='A'&&c<='Z'){
s[top]+=c;
}
if(c=='['){
a[top+1]=0;
s[top+1]="";
top++;
}
if(c==']'){
for(int i=1;i<=a[top];i++){
s[top-1]+=s[top];
}
top--;
}
}
cout<<s[0];
fclose(stdin);
fclose(stdout);
return 0;
}