본문 바로가기
Study/알고리즘

[백준 알고리즘] 2675번 Python

by Becoming a Hacker 2021. 10. 4.
반응형

문제 정보

 

제출 코드

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()

댓글