문제
알고리즘 고민
이 문제는 큰 고민을 하지 않았다. 이전에 자바를 공부할 때 BigInteger 라는 큰 수를 처리하는 좋은 기능이 있기 때문에 그 기능을 사용해서 바로 문제를 해결하였다. Python 이나 C/C++ 같은 경우에는 고민이 필요할 것으로 예상된다.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.math.BigInteger;
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(), " ");
BigInteger num1 = new BigInteger(st.nextToken());
BigInteger num2 = new BigInteger(st.nextToken());
System.out.println(num1.add(num2));
}
}
'Algorithm > BOJ' 카테고리의 다른 글
[BOJ] 9663번 : N-Queen (JAVA/자바) (0) | 2022.03.11 |
---|---|
[BOJ] 15649번 : N과 M (1) (JAVA/자바) (0) | 2022.03.11 |
[BOJ] 2839번 : 설탕 배달 (JAVA/자바) (0) | 2022.03.11 |
[BOJ] 2775번 : 부녀회장이 될테야 (JAVA/자바) (0) | 2022.03.11 |
[BOJ] 10250번 : ACM 호텔 (JAVA/자바) (0) | 2022.03.10 |