https://www.acmicpc.net/problem/2675
풀이
S = int(input())
for i in range(S):
num, t = input().split()
text = ''
for i in t:
text += int(num) * i
print(text)
'Python > Baekjoon' 카테고리의 다른 글
백준 1152번 : 단어의 개수 (0) | 2022.10.06 |
---|---|
백준 1157번 : 단어 공부 (0) | 2022.10.06 |
백준 10809번 : 알파벳 찾기 (0) | 2022.10.06 |
백준 11720번 : 숫자의 합 (0) | 2022.10.06 |
백준 11654번 : 아스키 코드 (0) | 2022.10.06 |