728x90
반응형

A + B * x < C * x ->  A < (C - B) * x 식을 만족하는 x의 최솟값은 A // (C - B) + 1이다.

A, B, C = map(int, input().split())
if B >= C:
    print(-1)
else:
    print(A//(C-B)+1)

728x90
반응형

+ Recent posts