짱해커가 되어보자

boj 2711 본문

프로그래밍_일반/백준

boj 2711

Spadework 2020. 2. 23. 10:30

* Solved 기준 브론즈2 단순 풀이

for _ in range(int(input())):
	i,s = input().split(); i=int(i)
	print(s[:i-1]+s[i:])

 

'프로그래밍_일반 > 백준' 카테고리의 다른 글

boj 4458  (0) 2020.02.24
boj 15969  (0) 2020.02.24
boj 5586  (0) 2020.02.23
boj 5586  (0) 2020.02.23
boj 10995  (0) 2020.02.23
Comments