보안을 그리다, 훈이

[Baekjoon/Python3] 10707번 수도요금 본문

Programming/Python & Data Structures

[Baekjoon/Python3] 10707번 수도요금

HooNeee 2020. 12. 6. 03:33

[Baekjoon/Python3] 10707번 수도요금

 

www.acmicpc.net/problem/10707

 

10707번: 수도요금

JOI군이 살고 있는 지역에는 X사와 Y사, 두 개의 수도회사가 있다. 두 회사의 수도요금은 한 달간 수도의 사용량에 따라 다음과 같이 정해진다. X사 : 1리터당 A엔. Y사 : 기본요금은 B엔이고, 사용량

www.acmicpc.net

 

nums = [int(input()) for i in range(5)]
x = nums[0] * nums[4]
y = 0
if nums[4] <= nums[2]:
    y = nums[1]
else:
    y = nums[1] + (nums[4] - nums[2]) * nums[3]
print(min(x, y))
Comments