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

[백준/파이썬] 24805번 Climbing Worm

by 현장 2024. 10. 2.

a, b, h = map(int, input().split())
now_h, res = 0, 0

while True:
    now_h += a
    res += 1

    if now_h >= h:
        print(res)
        break

    now_h -= b