본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬]1026번 보물

by 현장 2021. 8. 17.

-코드

n = int(input())
a = sorted(list(map(int, input().split())))
b = sorted(list(map(int, input().split())), reverse=True)
S = 0
for i in range(n):
    S += a[i] * b[i]
print(S)