https://www.acmicpc.net/problem/1712
import sys
# a,b,c=map(int,input().split())
a,b,c=map(int,sys.stdin.readline().split())
if b>=c:
print(-1)
else:
print(int(a/(c-b))+1)
728x90
'파이썬알고리즘' 카테고리의 다른 글
20210607#(35) 백준 1193 파이썬 (0) | 2021.06.07 |
---|---|
20210605#(34) 백준 2869 파이썬 (0) | 2021.06.05 |
20210605#(32) 백준 4344 파이썬 (0) | 2021.06.05 |
20210604#(31) 백준 1546 파이썬 (0) | 2021.06.03 |
20210603#(30) 백준 3052 파이썬 (0) | 2021.06.03 |