#include <iostream>
#include <string>
using namespace std;
int main() {
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
int t;
cin >> t;
for (int i = 1; i <= t; i++) {
string str;
int r;
cin >> r >> str;
for (int j = 0; j < str.length(); j++) {
for (int k = 0; k < r; k++) {
cout << str[j];
}
}
cout << "\n";
}
return 0;
}
c++ 문자열 입력은 string
string을 사용하려면 헤더에 string을 추가해줘야한다.
헉 벌써 C++ 마스터 같으세요~~