본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 31561번 시계탑

by 현장 2024. 3. 11.

-Code

time = int(input())

if 30 >= time:
    print(round(time / 2, 1))
else:
    print(round(15 + (time - 30) * 1.5, 1))