-
백준 2675 [파이썬 Python]알고리즘 Algorithms/백준 BaekJoon 알고리즘 2020. 3. 30. 15:57
파이썬 Python
내풀이
n = int(input())
for i in range(n):
w= ''
r,word = input().split()
for j in word:
w += j * int(r)
print(w)숏코딩
exec("r,_,*s=input();print(''.join(i*int(r)for i in s));"*int(input()))
'알고리즘 Algorithms > 백준 BaekJoon 알고리즘' 카테고리의 다른 글
백준 2908 [파이썬 Python] (0) 2020.03.30 백준 1157 [파이썬 Python] (0) 2020.03.30 백준 10809 [PYTHON 파이썬] (0) 2020.03.30 백준 1065 [Python 파이썬 /Java 자바] (0) 2020.03.27 백준 4344 [Python 파이썬 /Java 자바] (0) 2020.03.27