728x90
import sys
t = int(sys.stdin.readline())
for _ in range(t):
r, s = sys.stdin.readline().split()
for i in s:
print(i * int(r), end='')
print()
sys.stdin.readline()에 .split()이 있으면 .rstrip()을 안해줘도 되는구나
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 13305 파이썬(python) : 단어의 개수 (0) | 2022.07.02 |
---|---|
[백준] 11170 파이썬(python) : 숫자의 합 (0) | 2022.07.02 |
[백준] 17298 파이썬(python) : 오큰수 - (monotone stack 알고리즘) (0) | 2022.07.02 |
[백준] 1707 파이썬(python) : 이분 그래프 (0) | 2022.07.01 |
[백준] 16928 파이썬(python) : 뱀과 사다리 게임 - (★) (0) | 2022.07.01 |