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
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 14039번 Magic Squares (0) | 2024.10.04 |
---|---|
[백준/파이썬] 11606번 Egg Drop (2) | 2024.10.03 |
[백준/파이썬] 32432번 Attention to the Meeting (0) | 2024.10.01 |
[백준/파이썬] 32399번 햄버거 정렬 (0) | 2024.09.30 |
[백준/파이썬] 32369번 양파 실험 (0) | 2024.09.29 |