백준 1712 - 손익분기점 (파이썬)

Updated:

Answer

a, b, c = map(int, input().split())

if b >= c:
    print(-1)
else:
    print(a // (c - b) + 1)

Categories:

Updated: