[기본수학1] 손익분기점
2021. 2. 20. 11:51ㆍ백준
첫 제출 코드
input = input()
input_split = input.split(" ")
fixed_price = int(input_split[0])
addi_price = int(input_split[1])
sale_price = int(input_split[2])
if addi_price >= sale_price:
print(-1)
else:
print(fixed_price // (sale_price - addi_price) + 1)
리팩토링 코드 (가독성 포기. 코드 길이 극단적으로 줄여봄 76Byte)
i=list(map(int,input().split(" ")))
m=i[2]-i[1]
print(m>0and i[0]//m+1or -1)