https://www.acmicpc.net/problem/1712
노트북 한 대당 생산 비용 B가 노트북 가격 C보다 크면 손해다. 즉, -1 출력해야함
그 외 손익분기점은 수익이 나서 아래 계산이 0보다 클 때입니다. 이를 고려하여 코드를 짜면 됩니다.
#include <iostream>
using namespace std;
int main() {
int a,b,c, sum, n=0, cnt;
cin >> a >> b >> c;
if (b>=c) cnt = -1;
else cnt = a / (c-b) + 1;
cout << cnt;
}
#include<stdio.h>
int main() {
int a, b, c;
scanf("%d %d %d", &a, &b, &c);
printf("%d", (b>=c)?-1:a / (c - b) + 1);
}
a,b,c = map(int, input().split())
print(b<c and a//(c-b)+1 or -1)
a,b,c = map(int, input().split())
print(-1 if b>=c else a//(c-b)+1)