practivceAlgorithm/swexpertacademy

[SWEA][Python] 5108 숫자추가

findTheValue 2021. 8. 24. 00:35

연결리스트 섹션에 있지만.. 그냥 삽입.

 

for test in range(1,int(input())+1):
    N, M, L = map(int, input().split())
    arr = list(map(int, input().split()))
    for _ in range(M):
        idx, num = map(int, input().split())
        arr.insert(idx,num)
    print(f'#{test} {arr[L]}')

'practivceAlgorithm > swexpertacademy' 카테고리의 다른 글

[SWEA][Python] 5120 암호  (0) 2021.08.24
[SWEA][Python] 5110 수열 합치기  (0) 2021.08.24
[SWEA][Python] 4874 Forth  (0) 2021.08.20
[SWEA][Python] 4875 미로  (0) 2021.08.20
[SWEA][Python] 4880 토너먼트 카드 게임  (0) 2021.08.20