-Code
import java.math.BigInteger;
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
BigInteger a = sc.nextBigInteger();
BigInteger b = sc.nextBigInteger();
BigInteger c = sc.nextBigInteger();
System.out.println(b.subtract(c).divide(a));
}
}
'Beakjoon&프로그래머스 > Java' 카테고리의 다른 글
[백준/Java] 24736번 Football Scoring (0) | 2022.04.15 |
---|---|
[백준/Java] 24568번 Cupcake Party (0) | 2022.04.15 |
[백준/Java] 24086번 알고리즘 수업 - 알고리즘의 수행 시간 1 (0) | 2022.04.15 |
[백준/Java] 24086번 Affischutskicket (0) | 2022.04.15 |
[백준/Java] 24086번 身長 (Height) (0) | 2022.04.15 |