자바 백준 2407번
실버 3
https://www.acmicpc.net/problem/2407
문제 보기
분류: 수학, 조합론, 큰 수 연산
코드 풀이
import java.util.Scanner;
import java.math.BigInteger;
public class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
// n과 m 입력
int n = sc.nextInt();
int m = sc.nextInt();
// nCm 계산
BigInteger result = calculateCombination(n, m);
// 결과 출력
System.out.println(result);
}
// 조합 계산 메서드
private static BigInteger calculateCombination(int n, int m) {
// 분자 계산: n!
BigInteger numerator = factorial(n);
// 분모 계산: m! * (n-m)!
BigInteger denominator = factorial(m).multiply(factorial(n - m));
// nCm 계산 결과 리턴턴
return numerator.divide(denominator);
}
// 팩토리얼 계산 메서드
private static BigInteger factorial(int num) {
// 결과를 저장할 BigInteger 객체 초기화
BigInteger result = BigInteger.ONE;
// 2부터 num까지 반복하면서 팩토리얼 계산
for (int i = 2; i <= num; i++) {
result = result.multiply(BigInteger.valueOf(i));
}
// 계산된 팩토리얼 리턴
return result;
}
}
/*
100 50
100891344545564193334812497256
*/
'공부하기 > 백준' 카테고리의 다른 글
[Java] 백준 풀기 2089 - -2진수 (0) | 2024.01.31 |
---|---|
[Java] 백준 풀기 1699 - 제곱수의 합 (0) | 2024.01.30 |
[Java] 백준 풀기 6378 - 디지털 루트 (2) | 2024.01.26 |
[Java] 백준 풀기 5576 - 콘테스 (0) | 2024.01.24 |
[Java] 백준 풀기 13866 - 팀 나누기 (2) | 2024.01.23 |