728x90
반응형
단순 사칙연산 문제이다.
for _ in range(int(input())):
a, b, c, d, e = map(int, input().split())
res = a*350.34 + b*230.9 + c*190.55 + d*125.3 + e*180.9
print("$%.2f" % (res))
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 5565번 영수증(python) (0) | 2021.02.14 |
---|---|
백준 알고리즘 5523번 경기 결과(python) (0) | 2021.02.14 |
백준 알고리즘 5235번 Even Sum More Than Odd Sum(python) (0) | 2021.02.14 |
백준 알고리즘 5220번 Error Detection(python) (0) | 2021.02.14 |
백준 알고리즘 5217번 쌍의 합(python) (0) | 2021.02.14 |