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))
'Python > Baekjoon' 카테고리의 다른 글
백준 1193번 : 분수찾기 (0) | 2022.10.11 |
---|---|
백준 2292번 : 벌집 (1) | 2022.10.07 |
백준 1316번 : 그룹 단어 체커 (0) | 2022.10.06 |
백준 2941번 : 크로아티아 알파벳 (0) | 2022.10.06 |
백준 5622번 : 다이얼 (0) | 2022.10.06 |