반응형
코드
n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
a.sort()
b.sort(reverse=True)
ans = 0
for i,j in zip(a,b):
ans += i*j
print(ans)
반응형
'알고리즘 > 수학' 카테고리의 다른 글
[백준][Python] 10872번 팩토리얼 (0) | 2022.10.25 |
---|---|
[백준][Python] 1094번 막대기 (0) | 2022.10.20 |
[백준][Python] 4673번 셀프 넘버 (0) | 2022.10.18 |
[백준][Python] 2824번 최대공약수 (0) | 2022.09.26 |
[백준][Python] 9421번 소수상근수 (1) | 2022.09.21 |
댓글