[Python] 백준 1026번 : 보물
2021. 8. 19. 01:29
https://www.acmicpc.net/problem/1026
import random
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
a.sort(reverse=True)
b.sort()
c = 0
sum = 0
for i in a:
sum += i*b[c]
c += 1
print(sum)
'Programming > BOJ' 카테고리의 다른 글
[Python] 백준 1157 : 단어 공부 (0) | 2021.08.19 |
---|---|
[Python] 백준 1100번 : 하얀 칸 (0) | 2021.08.19 |
백준 문제집 모음 (0) | 2021.07.27 |
[Python] 백준 1977번 : 완전제곱수 (0) | 2021.05.04 |
[Python] 백준 2525번 : 오븐 시계 (0) | 2021.04.10 |