main
[백준-1271번/Java] 엄청난 부자2 본문
* BigInteger 사용
import java.io.*;
import java.util.*;
import java.math.*;
public class Main {
public static void main(String[] args) throws IOException {
BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
StringTokenizer stk = new StringTokenizer(br.readLine(), " ");
BigInteger N = new BigInteger(stk.nextToken());
BigInteger M = new BigInteger(stk.nextToken());
System.out.println(N.divide(M));
System.out.println(N.remainder(M));
}
}
728x90
'Algorithm' 카테고리의 다른 글
[백준-10815번/Java] 숫자 카드 (0) | 2022.11.20 |
---|---|
[백준-1966번/Java] 프린터 큐 (0) | 2022.11.19 |
[Array-9/Java] 격자판 최대합 (0) | 2022.11.19 |
[String-10] 가장 짧은 문자거리 (0) | 2022.11.18 |
[백준-10870번/Java] 피보나치 수 5 (0) | 2022.11.18 |
Comments