#include <iostream>
#include <string>
using namespace std;

int main()
{
	ios::sync_with_stdio(0), cin.tie(0);
	int N; cin >> N;

	int R;
	string str;
	for (int i = 0; i < N; ++i)
	{
		cin >> R;
		cin >> str;
		for (char c : str)
		{
			cout << string(R, c);
		}
		cout << "\n";
	}
	return 0;
}

||사용 기법

  • string 생성자
  • string을 이용한 ranged for loop

||새로 알게 된것

  • string 생성자에서 원하는 개수와 원하는 문자로 생성 

string (원하는 개수, 원하는 문자) 로 생성하는걸 처음알았다.

ex) string(5,'A') == "AAAAA" 가 생성된다.

'코딩 테스트 > 알고리즘 풀이' 카테고리의 다른 글

[백준 - 1339] 단어 수학  (0) 2022.08.10
[백준 - 10951] A+B - 4  (0) 2022.08.10
[코드포스 - 1716A] 2-3 Moves  (0) 2022.08.06
[백준 - 24445] 너비 우선 탐색 2  (0) 2022.08.06
[백준 - 106953] A → B  (0) 2022.08.03

+ Recent posts