반응형
문제 정보
제출 코드
fix_pay, variable_pay, product_pay = map(int, input().split())
if(product_pay-variable_pay<=0):
print(-1)
else:
count = fix_pay/(product_pay-variable_pay)+1
print(int(count))
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 1193번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 2292번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1978번 Python (0) | 2021.10.04 |
[백준 알고리즘] 1316번 Python (0) | 2021.10.04 |
[백준 알고리즘] 2941번 Python (0) | 2021.10.04 |
댓글