본문 바로가기
파이썬/코딩 테스트

array03(실전 문제): 두 배열의 원소 교체

by L_SU 2022. 6. 29.
# 두 배열의 원소 교체

N, K = map(int, input().split())
a = list(map(int, input().split()))
b = list(map(int, input().split()))

a.sort()
b.sort(reverse=True)

for i in range(K):
    a[i] = b[i]
print(sum(a))