본문 바로가기
프로그래밍 파이썬

[백준 BAEKJOON] 1712번 손익분기점

by st-og 2021. 7. 10.

소스 코드

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

if b>=c:

    print(-1)

else :

    print(a//(c-b)+1)