상세 컨텐츠

본문 제목

[백준] 기본 수학 1 - (Java) 1712번 손익분기점

Algorithms/BaekJoon

by Jjiveloper 2022. 6. 10. 11:38

본문

728x90

제출

import java.io.*;
import java.util.StringTokenizer;

public class Main {
  public static void main(String[] args) throws IOException {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer(br.readLine());

    int a = Integer.parseInt(st.nextToken());
    int b = Integer.parseInt(st.nextToken());
    int c = Integer.parseInt(st.nextToken());

    int sales1 = (c - (a + b));
    if (0 < sales1) {
      System.out.print(1);
      return;
    }

    int sales2 = (c * 2 - (a + (b * 2)));

    System.out.print(sales1 < sales2 ? (sales1 / (sales1 - sales2)) + 2 : -1);
  }
}

 

규칙 찾기

BOJ 1712번.xlsx
0.02MB


더 간단한 규칙

 (A / (C - B) + 1)

출처: https://www.acmicpc.net/problem/1712

 

1712번: 손익분기점

월드전자는 노트북을 제조하고 판매하는 회사이다. 노트북 판매 대수에 상관없이 매년 임대료, 재산세, 보험료, 급여 등 A만원의 고정 비용이 들며, 한 대의 노트북을 생산하는 데에는 재료비와

www.acmicpc.net

728x90
반응형

관련글 더보기