//연산하기
BigInteger num1 = new BigInteger("1234");
BigInteger num2 = new BigInteger("10000000000000000000000000");
System.out.println("num1.add(num2) = " + num1.add(num2));
System.out.println("num2.subtract(num1) = " + num2.subtract(num1));
System.out.println("num1.subtract(num2) = " + num1.subtract(num2));
System.out.println("num1.multiply(num2) = " + num1.multiply(num2));
System.out.println("num1.divide(num2) = " + num1.divide(num2));
System.out.println("num2.divide(num1) = " + num2.divide(num1));
System.out.println("num2.remainer(num1) = " + num2.remainer(num1)); // 나머지
System.out.println("num2.byteValue() = " + num2.byteValue()); // one byte 값
//형변환
BigInteger num3 = BigInteger.valueOf(10000000);
int intNum3 = num3.intValue();
long longNum3 = num3.longValue();
float floatNum3 = num3.floatValue();
double doubleNum3 = num3.doubleValue();
String strNum3 = num3.toString();
System.out.println("intNum3 = " + intNum3);
System.out.println("longNum3 = " + longNum3);
System.out.println("floatNum3 = " + floatNum3);
System.out.println("doubleNum3 = " + doubleNum3);
System.out.println("strNum3 = " + strNum3);
//비교 : 서로 같으면 0, num4 가 더 크면 1, num5가 더 크면 -1
BigInteger num4 = new BigInteger("100001");
BigInteger num5 = new BigInteger("100000");
int compare = num4.compareTo(num5);
System.out.println("compare = " + compare);
//심지어는 최대공약수 구하는 함수도 있다.
BigInteger num6 = new BigInteger("1278916849368");
BigInteger num7 = new BigInteger("8124682192");
BigInteger gcd = num6.gcd(num7);
Solution 1. BigInteger 이용
113808 kb / 816 ms
BigInteger 값을 이용하면, 수의 범위가 거의 무한대까지 가능하기 때문에 아무리 큰수라도 계산해서 가지고 있을 수 있다.
게다가 BigInteger 의 경우는 이미 표준 라이브러리로 제공해주는 연산 함수들이 존재하며, 심지어는 최대공약수를 구하는 함수도 포함되어있다.
문제의 의도가 이 자료형을 써서 하라는 것은 아닌 것 같지만, BigInteger 도 처음 접한 개념인만큼, 우선은 이것을 이용해서 단순하게 유클리드 호제법을 써봤다.
package practice.algorithm.math;
import java.math.BigInteger;
import java.util.Scanner;
public class Bj2824_1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
BigInteger a = new BigInteger("1");
while ( n > 0 ) {
a = BigInteger.valueOf(sc.nextInt()).multiply(a);
n--;
}
int m = sc.nextInt();
BigInteger b = new BigInteger("1");
while (m > 0) {
b = BigInteger.valueOf(sc.nextInt()).multiply(b);
m--;
}
if (a.compareTo(b) < 0) {
BigInteger temp = new BigInteger("0");
temp = a;
a = b;
b = temp;
}
String strGcd = gcd(a, b).toString();
System.out.println(strGcd.length() > 9 ? strGcd.substring(strGcd.length()-9, strGcd.length()) : strGcd);
}
private static BigInteger gcd(BigInteger a, BigInteger b) {
if (b.compareTo(new BigInteger("0")) == 0) return a;
return gcd(b, a.remainder(b));
}
}
BigInteger 내장함수를 쓰면 다음과 같이 알고리즘 구현 없이도 가능하다.
package practice.algorithm.math;
import java.math.BigInteger;
import java.util.Scanner;
public class Bj2824_1_1 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int n = sc.nextInt();
BigInteger a = new BigInteger("1");
while ( n > 0 ) {
a = BigInteger.valueOf(sc.nextInt()).multiply(a);
n--;
}
int m = sc.nextInt();
BigInteger b = new BigInteger("1");
while (m > 0) {
b = BigInteger.valueOf(sc.nextInt()).multiply(b);
m--;
}
if (a.compareTo(b) < 0) {
BigInteger temp = new BigInteger("0");
temp = a;
a = b;
b = temp;
}
String strGcd = a.gcd(b).toString();
System.out.println(strGcd.length() > 9 ? strGcd.substring(strGcd.length()-9, strGcd.length()) : strGcd);
}
}
Solution 2.
22632 kb / 328 ms
엄청난 분의 블로그를 발견했다. 문제의 의도를 정확히 파악하시고 적절하게 매소드 분리도 잘 되어있어서 해당 코드를 이해하고 혼자서 그대로 쳐보는 연습을 했다. 자세한 내용은 아래의 블로그를 참고! (친절하고 읽기 좋은 코드 감사드립니다 🙏)