记录编号 596127 评测结果 AAAAAAAAAA
题目名称 解压缩 最终得分 100
用户昵称 GravatarDavinci 是否通过 通过
代码语言 C++ 运行时间 0.030 s
提交时间 2024-10-22 14:27:49 内存使用 3.39 MiB
显示代码纯文本
#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;
}