https://www.acmicpc.net/problem/1026
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort()
b.sort(reverse=True)
res = 0
for i in range(n):
res += a[i] * b[i]
print(res)
'알고리즘 > 백준' 카테고리의 다른 글
백준 2217: 로프 (Python) (2) | 2021.09.29 |
---|---|
백준 5585: 거스름돈 (Python) (0) | 2021.09.29 |
백준 1541: 잃어버린 괄호 (Python) (0) | 2021.09.27 |
백준 1931: 회의실 배정 (Python) (0) | 2021.09.27 |
백준 11047: 동전 0 (Python) (0) | 2021.09.25 |