728x90
https://www.acmicpc.net/problem/1026
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A.sort()
C = list(sorted(B, reverse=True))
S = 0
for i in range(N):
S += A[i]*C[i]
print(S)
< pyhton >
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
A.sort()
S = 0
for i in range(N):
S += A[i]*max(B)
del B[B.index(max(B))]
print(S)
반응형
'전.py' 카테고리의 다른 글
백준 1572 중앙값 (실패 – 시간초과) (0) | 2020.12.14 |
---|---|
백준 1110 더하기 사이클 (0) | 2020.12.14 |
코드업 2749 피자 가게 (0) | 2020.12.14 |
백준 1835 카드 (0) | 2020.12.14 |
백준 2777 숫자 놀이 (0) | 2020.12.14 |