반응형
문제 정보
제출 코드
count = int(input())
for i in range(count):
tmp = input().split()
n = int(tmp[0])
string = tmp[1]
for s in string:
print(n*s, end='')
print()
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1152번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1157번 Python (0) | 2021.10.04 |
[백준 알고리즘] 10809번 Python (0) | 2021.10.04 |
[백준 알고리즘] 11720번 Python (0) | 2021.10.04 |
[백준 알고리즘] 11654번 Python (0) | 2021.10.04 |
댓글