[1026번] 보물 python

HYEOB KIM·2023년 6월 2일
0

algorithm

목록 보기
37/44
post-custom-banner

코드 풀이

[1026번] 보물

import sys

n = int(sys.stdin.readline())
a = list(map(int, sys.stdin.readline().split(' ')))
b = list(map(int, sys.stdin.readline().split(' ')))

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

s = 0
for i in range(n):
    s += (a[i] * b[i])

print(s)
profile
Devops Engineer

0개의 댓글