반응형
import math
a,b,c = map(int,input().split())
if b < c:
temp = c-b
print(math.floor(a/temp + 1))
else:
print(-1)
반응형
'Algorithm > Baekjoon' 카테고리의 다른 글
10250 (0) | 2021.05.06 |
---|---|
2869 (0) | 2021.05.05 |
1193 (0) | 2021.05.05 |
2292 (0) | 2021.05.05 |
4673 (0) | 2021.05.05 |