728x90
https://www.acmicpc.net/problem/13305
n = int(input())
length = list(map(int, input().split()))
price = list(map(int, input().split()))
result = price[0]*length[0]
low = price[0]
for i in range(1, n-1):
if low > price[i]:
low = price[i]
result += low*length[i]
print(result)
반응형
'전.py' 카테고리의 다른 글
[python] 프로그래머스 거리두기 확인하기 (0) | 2022.04.22 |
---|---|
[python] 프로그래머스 수식 최대화 (0) | 2022.04.19 |
[python] 프로그래머스 소수 찾기 (0) | 2022.04.13 |
[python] 프로그래머스 모의고사 (0) | 2022.04.13 |
[python] 백준 1931 회의실 배정 (0) | 2022.04.11 |