-코드
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)
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬]18258번 큐2 (0) | 2021.08.18 |
---|---|
[백준/파이썬]1120번 문자열 (0) | 2021.08.17 |
[백준/파이썬]10610번 30 (0) | 2021.08.16 |
[백준/파이썬]1252번 이진수 덧셈 (0) | 2021.08.16 |
[백준/파이썬]2435번 기상청 인턴 신현수 (0) | 2021.08.16 |