Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 문자열
- php
- Digital Forensics
- HackCTF
- writeup
- Python
- Web Hacking
- 백준
- 수학
- Forensics
- 그리디 알고리즘
- 인코그니토
- wargame
- 구현
- Incognito
- MySQL
- cryptography
- 써니나타스
- C
- 정렬
- Database
- N0Named
- Web
- Text
- Network
- 사칙연산
- CTF
- misc
- SuNiNaTas
- xcz.kr
Archives
- Today
- Total
보안을 그리다, 훈이
[Baekjoon/Python3] 1712번 손익분기점 본문
[Baekjoon/Python3] 1712번 손익분기점
import sys
a, b, c = map(int, sys.stdin.readline().split())
if b >= c:
sys.stdout.write(str(-1))
else:
sys.stdout.write(str(a // (c - b) + 1))
'Programming > Python & Data Structures' 카테고리의 다른 글
[Baekjoon/Python3] 1834번 나머지와 몫이 같은 수 (0) | 2020.12.03 |
---|---|
[Baekjoon/Python3] 1789번 수들의 합 (0) | 2020.12.03 |
[Baekjoon/Python3] 1676번 팩토리얼 0의 개수 (0) | 2020.12.03 |
[Baekjoon/Python3] 1568번 새 (0) | 2020.12.03 |
[Baekjoon/Python3] 1550번 16진수 (0) | 2020.12.03 |
Comments