문제 링크입니다: https://www.acmicpc.net/problem/2675
간단한 문자열 문제였습니다.
별도의 알고리즘을 요구하지 않는 문제이기 때문에 설명은 생략하겠습니다.
#include <iostream>
#include <string>
using namespace std;
int main(void)
{
ios_base::sync_with_stdio(0);
cin.tie(0); //cin 실행속도 향상
int test_case;
cin >> test_case;
for (int t = 0; t < test_case; t++)
{
int R;
cin >> R;
string S;
cin >> S;
for (int i = 0; i < S.length(); i++)
for (int j = 0; j < R; j++)
cout << S[i];
cout << "\n";
}
return 0;
}
개발환경:Visual Studio 2017
지적, 조언, 질문 환영입니다! 댓글 남겨주세요~
반응형
'알고리즘 > BOJ' 카테고리의 다른 글
백준 1167번 트리의 지름 (9) | 2018.08.29 |
---|---|
백준 1315번 RPG (0) | 2018.08.29 |
백준 6064번 카잉 달력 (6) | 2018.08.28 |
백준 2292번 벌집 (0) | 2018.08.28 |
백준 11721번 열 개씩 끊어 출력하기 (0) | 2018.08.28 |