0
1
mirror of https://git.sb/baoshuo/OI-codes.git synced 2024-09-19 22:05:24 +00:00
OI-codes/Luogu/P1928/P1928.cpp

34 lines
517 B
C++

// https://www.luogu.com.cn/record/38657002
#include <bits/stdc++.h>
using namespace std;
string cnm() {
int n;
char ch;
string s = "";
string str = "";
while (cin >> ch) {
if (ch == '[') {
cin >> n;
str = cnm();
while (n--) {
s += str;
}
} else if (ch == ']') {
return s;
} else {
s += ch;
}
}
return s;
}
int main() {
cout << cnm() << endl;
return 0;
}