728x90
반응형
처음엔 이렇게 에러가떴다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import com.sun.source.tree.CaseTree; import java.math.*; import java.util.Scanner; public class Main { public static void main(String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b= sc.nextInt(); System.out.println(a/b); System.out.println(a%b); } } | cs |
My code
위와 같은 코드를 이용하면 런타임 에러가 뜬다.
브론즈5 문제이지만 정답률이 낮은 이유는 아무래도 int형이나 long형의 범위를 초과하는 숫자가 입력으로 주어지기 때문이다.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | import com.sun.source.tree.CaseTree; import java.math.*; 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(); System.out.println(a.divide(b)); System.out.println(a.mod(b)); } } | cs |
HOW
그래서 이 경우 나는 BigInteger를 이용해주었다.
728x90
반응형
'✨ 코딩테스트 > Baekjoon' 카테고리의 다른 글
[Baekjoon / JAVA] 백준 1085번 직사각형에서 탈출 (0) | 2023.02.12 |
---|---|
[Baekjoon / JAVA] 백준 2440번 별 찍기 - 3 (0) | 2023.02.08 |
[Baekjoon / JAVA] 2460번 백준 지능형 기차2 (0) | 2023.02.08 |
[Baekjoon / JAVA] 백준 2562번 최댓값 (0) | 2023.02.07 |
[Baekjoon / JAVA] 백준 2455번 지능형 기차 (0) | 2023.02.02 |
댓글