반응형
# @Author YoungMinKim
# baekjoon
import sys
A,B,V = map(int,sys.stdin.readline().split())
if (V-A) % (A-B) == 0:
result = (V-A) / (A-B) + 1
else:
result = (V-A) / (A-B) + 2
print(int(result))
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 11279 (0) | 2020.10.04 |
---|---|
baekjoon - python - 1002 (0) | 2020.10.04 |
baekjoon - python - 2161 (0) | 2020.09.22 |
baekjoon - python - 1085 (0) | 2020.09.21 |
baekjoon - python - 18258 (0) | 2020.09.20 |
댓글