문제: 무단 배포 금지로 인해 사이트 주소로 남깁니다.
https://swexpertacademy.com/main/code/problem/problemDetail.do?contestProbId=AV189xUaI8UCFAZN
정답 코드:
T = int(input())
for test_case in range(1, T + 1):
#P: 1리터당 P원(A사)
#Q: 기본요금(B사)
#R: 기준치(B사)
#S: 초과 리터당 요금(B사)
#W: 종민이의 사용량
#P, Q, R, S, W
arr = list(map(int, input().split()))
a_company = arr[0] * arr[-1]
b_company = arr[1]
if arr[-1] - arr[2] >= 0:
b_company += (arr[-1] - arr[2]) * arr[3]
print(f"#{test_case}", min(a_company, b_company))
'SWEA' 카테고리의 다른 글
5215. 햄버거 다이어트 (0) | 2024.07.15 |
---|---|
2007. 패턴 마디의 길이 (0) | 2024.07.15 |
1945. 간단한 소인수분해 (0) | 2024.07.15 |
1954 .달팽이 숫자 (0) | 2024.07.15 |
1959. 두 개의 숫자열 (0) | 2024.07.15 |