백준 2869번
문제
https://www.acmicpc.net/problem/2869
코드
import math
a, v , h = map(int, input().split())
n = (h - v ) / (a - v)
print( math.ceil(n))
풀이
ax+bx−b≥height=(a+b)x≥height−b=x≥(a+b)(height−b)
이라는 식으로 계산할 수 있습니다.
x는 자연수이므로 ceil()함수를 이용하여 자연수로 값을 올려줍니다.