https://www.acmicpc.net/problem/2675
t = int(input())
for i in range(t):
r, s = map(str,input().split())
for i in s:
print(i*int(r),end='')
print()
'알고리즘 > 백준' 카테고리의 다른 글
백준 2908: 상수 (Python) (0) | 2021.08.25 |
---|---|
백준 1157: 단어 공부 (Python) (0) | 2021.08.25 |
백준 10809: 알파벳 찾기 (Python) (0) | 2021.08.25 |
백준 11654: 아스키 코드 (Python) (0) | 2021.08.25 |
백준 1065: 한수 (Python) (0) | 2021.08.24 |