Files
python/TangDou/LuoGuBook/P1928_1.cpp
HuangHai 1f397eca87 'commit'
2025-08-30 18:35:01 +08:00

25 lines
407 B
C++

#include <bits/stdc++.h>
using namespace std;
string expand() {
int d;
char x;
string s;
while (cin >> x) {
if (x == '[') {
cin >> d;
string t = expand();
while (d--) s += t;
} else if (x == ']')
return s;
else s += x;
}
return s;
}
int main() {
cout << expand();
return 0;
}