일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- adjacentElementsProduct
- Sequential Search
- codesingal
- markdown
- codesignal
- Counting cells in a blob
- All Longest Strings
- shapeArea
- 파이썬머신러닝완벽가이드
- centuryFromYear
- baekjun
- C++
- almostIncreasingSequence
- Numpy
- recursion
- data_structure
- cpp
- Daily Commit
- 2015 봄학기 알고리즘
- 2750
- matrixElementsSum
- 백준
- 피보나치 수
- Python
- 10953
- til
- flask
- 파이썬 포렌식
- collections.deque
- 수 정렬하기
Archives
- Today
- Total
Introfor
[백준] 1712번 손익분기점 본문
손익분기점 : 총 비용과 총 소득이 동등한 지점을 의미
고정비용 : A, 가변비용 : B, 노트북 가격 : C, 노트북 판매 수 k
손익분기점 = (C - B)k - A
손익분기점이 0일 때 A+Bk = Ck로 k = A/(C-B)된다.
문제에서 최초 수익이 발생하는 판매량을 나타내는 것으로 k = A/(C-B)+1이 된다.
1 2 3 4 5 6 7 8 9 10 | def solution(): A, B, C = map(int, input().split()) if B >= C: return -1 else: return int(A/(C-B)+1) res = solution() print(res) | cs |
'Programming_prob > BaekJoon' 카테고리의 다른 글
[백준] 1978번 소수 찾기 (0) | 2020.10.10 |
---|---|
[백준] 2839번 설탕 배달 (0) | 2020.10.09 |
[백준] 1316번 그룹 단어 체커 (0) | 2020.10.07 |
[백준] 2941번 크로아티아 알파벳 (0) | 2020.10.07 |
[백준] 2908번 상수 (0) | 2020.10.06 |
Comments