https://www.acmicpc.net/problem/2675
#Solution
from sys import stdin
case_number = int(input())
test_case = stdin.readlines()
total_test = []
for i in test_case:
test = list(i.split())
test_num = int(test[0])
test_sample = str(test[1])
test_result = []
for k in test_sample:
print(k * test_num, end="")
print("")
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#43 백준 파이썬 [1316] 그룹 단어 체커 (0) | 2019.02.27 |
---|---|
#42 백준 파이썬 [1157] 단어 공부 (0) | 2019.02.27 |
#40 백준 파이썬 [10809] 알파벳 찾기 (0) | 2019.02.25 |
#39 백준 파이썬 [11654] 아스키 코드 (0) | 2019.02.25 |
#38 백준 파이썬 [10039] 평균 점수 (0) | 2019.02.25 |