https://www.acmicpc.net/problem/1712
a, b, c = map(int, input().split())
if b>=c:
print(-1)
else:
print(int(a/(c-b))+1)
'알고리즘 > 백준' 카테고리의 다른 글
백준 1193: 분수찾기 (Python) (1) | 2021.08.26 |
---|---|
백준 2292: 벌집 (Python) (0) | 2021.08.26 |
백준 1316: 그룹 단어 체커 (Python) (0) | 2021.08.25 |
백준 2941: 크로아티아 알파벳 (Python) (0) | 2021.08.25 |
백준 2908: 상수 (Python) (0) | 2021.08.25 |