SMALL
문제 출처
풀이 코드
A, B, C = map(int, input().split())
if B >= C:
print(-1)
else:
N=A//(C-B)
print(N+1)
LIST
'알고리즘-python > 백준 문제' 카테고리의 다른 글
[백준/1927/파이썬(Python3)] 최소힙 (0) | 2021.07.08 |
---|---|
[백준/2292/파이썬(Python3)] 벌집 (0) | 2021.07.07 |
[백준/1316/파이썬(Python3)] 그룹 단어 체커 (0) | 2021.07.06 |
[백준/2941/파이썬(Python3)] 크로아티아 알파벳 (0) | 2021.07.05 |
[백준/5622/파이썬(Python3)] 다이얼 (0) | 2021.07.02 |