반응형
https://www.acmicpc.net/problem/2675
이 문제는 특정 문자열 S의 item을 반복 횟수 R만큼 반복해서 출력하는 간단한 문제이다.
#include <iostream>
#include <string>
int main()
{
std::ios_base::sync_with_stdio(false);
std::cin.tie(NULL);
std::cout.tie(NULL);
int testCase = 0, R = 0;
std::string S;
std::cin >> testCase;
while(testCase--) {
std::cin >> R >> S;
int sLen = static_cast<int>(S.length());
for(int idx = 0; idx < sLen; idx++) {
for(int r = 0; r < R; r++) {
std::cout << S[idx];
}
}
std::cout << '\n';
}
return 0;
}
'Development. > Problem solving.' 카테고리의 다른 글
[BAEKJOON] 1316 - 그룹 단어 체커 (0) | 2020.08.17 |
---|---|
[BAEKJOON] 1157 - 단어 공부 (0) | 2020.08.17 |
[BAEKJOON] 4963 - 섬의 개수 (0) | 2020.08.17 |
[BAEKJOON] 2884 - 알람 시계 (0) | 2020.08.17 |
[BAEKJOON] 2609 - 최대공약수와 최소공배수 (0) | 2020.08.17 |