728x90
#include <iostream>
#include <string>
using namespace std;
int main() {
int t;
cin >> t;
while (t--) {
int r;
cin >> r;
string s;
cin >> s;
for (int i = 0; i < s.size(); i++) {
for (int j = 0; j < r; j++) {
cout << s[i];
}
}
cout << '\n';
}
}
728x90
'알고리즘 연습' 카테고리의 다른 글
C++ 1157 단어공부 (0) | 2021.09.24 |
---|---|
C++ 1152 단어의 개수 (0) | 2021.09.24 |
C++ 10809 알파벳 찾기 (0) | 2021.09.24 |
C++ 1065 한수 (0) | 2021.09.24 |
백준 14681 C++ 사분면 (0) | 2021.09.24 |