SMALL
문제 출처
풀이 코드
T=int(input())
for i in range(T):
A, B = input().split()
A, B = int(A), str(B)
answer=""
for b in B:
answer+=b*A
print(answer)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/2941/파이썬(Python3)] 크로아티아 알파벳 (0) | 2021.07.05 |
---|---|
[백준/5622/파이썬(Python3)] 다이얼 (0) | 2021.07.02 |
[백준/10809/파이썬(Python3)] 알파벳 찾기 (0) | 2021.07.01 |
[백준/1157/파이썬(Python3)] 단어 공부 (0) | 2021.06.30 |
[백준/11720/파이썬(Python3)] 숫자의 합 (0) | 2021.06.29 |