반응형
백준 17450번
https://www.acmicpc.net/problem/17450
정답코드) 시간: 44ms
- 각 과자의 가성비를 계산해 최고값을 가진 과자를 출력한다.
res, ans = 0, 0
snack = ["S", "N", "U"]
for i in range(3):
cost, weight = map(int, input().split())
tcost, tweight = cost * 10, weight * 10
money = tcost - 500 if tcost >= 5000 else tcost
if (tweight / money) > res:
res = tweight / money
ans = i
print(snack[ans])
반응형
'알고리즘' 카테고리의 다른 글
파이썬 - Python sort sorted 차이 (예시 포함) (0) | 2023.05.15 |
---|---|
백준 14614번 Calculate! - 파이썬(Python) (0) | 2023.02.07 |
백준 17127번 벚꽃이 정보섬에 피어난 이유 - 파이썬(Python) (0) | 2023.01.31 |
백준 14606번 피자 (Small) - 파이썬(Python) (0) | 2022.05.10 |
백준 1759번 암호 만들기 - 파이썬(Python) (0) | 2022.03.28 |
댓글