记录编号 |
596128 |
评测结果 |
AAAAAAAAAA |
题目名称 |
解压缩 |
最终得分 |
100 |
用户昵称 |
小金 |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.030 s |
提交时间 |
2024-10-22 14:34:57 |
内存使用 |
3.37 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
string str;
string solve()
{
string s1="",s2;
char ch;
while(cin>>ch)
{
if(ch=='[')
{
int t;
cin>>t;
s2=solve();
while(t--) s1+=s2;
}
else if(ch==']')
{
return s1;
}
else s1+=ch;
}
return s1;
}
int main()
{
freopen("extract.in","r",stdin);
freopen("extract.out","w",stdout);
cout<<solve();
return 0;
}