728x90
※ SW Expert 아카데미의 문제를 무단 복제하는 것을 금지합니다.
728x90
T = int(input())
for test_case in range(1, T + 1):
P, Q, R, S, W = map(int, input().split())
companyA = W * P
if (W > R):
companyB = Q + (W - R) * S
else:
companyB = Q
print("#{} {}".format(test_case, min(companyA, companyB)))
728x90
'Problem Solving > SWEA' 카테고리의 다른 글
[SW Expert Academy, SWEA 15612] 체스판 위의 룩 배치 (python) (0) | 2022.10.26 |
---|---|
[SW Expert Academy, SWEA 1204] [S/W 문제해결 기본] 1일차 - 최빈수 구하기 (python) (0) | 2022.09.10 |
[SW Expert Academy, SWEA 1285] 아름이의 돌 던지기 (python) (0) | 2022.09.09 |
[SW Expert Academy, SWEA 1288] 새로운 불면증 치료법 (python) (0) | 2022.09.09 |
[SW Expert Academy, SWEA 1928] Base64 Decoder (python) (0) | 2022.09.09 |