A = int(input())
B = int(input())
C = int(input())
D = int(input())
P = int(input())
if P > C:
result = B + (P-C)*D
else:
result = B
print(min(A*P, result))
'STUDY > Python' 카테고리의 다른 글
[백준] 14681번 사분면 고르기 파이썬 코드 (0) | 2020.10.10 |
---|---|
[백준] 11943번 파일 옮기기 파이썬 코드 (0) | 2020.10.10 |
[백준] 10162번 전자레인지 파이썬 (0) | 2020.10.08 |
[백준] 5596번 시험 점수 파이썬 (0) | 2020.10.08 |
[백준] 5532번 방학숙제 파이썬 (0) | 2020.10.08 |
댓글