https://www.acmicpc.net/problem/11050
import java.io.*;
import java.util.*;
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());
int n = Integer.parseInt(st.nextToken());
int k = Integer.parseInt(st.nextToken());
// 이항 계수 -> 순열 n!/k! * (n-k)! 5!/2! * 3! = 10
if(k == 0){
System.out.println(1);
return;
}
int cnt = 1;
for (int i = n - k + 1; i <= n; i++) {
cnt *= i;
}
for (int i = 1; i <= k; i++) {
cnt /= i;
}
System.out.println(cnt);
}
}
'Algorithm > Baekjoon Online Judge' 카테고리의 다른 글
[Java] 백준 1676 팩토리얼 0의 개수 실버5 (0) | 2024.05.05 |
---|---|
[Java] [Math] 백준 11051 이항 계수 2 실버2 (0) | 2024.05.04 |
[Java] [Math] 백준 6064 카잉 달력 실버1 (0) | 2024.05.04 |
[Java] [Math] 백준 11653 소인수 분해 브론즈1 (0) | 2024.05.04 |
[Java] [Math] 백준 1929 소수 구하기 실버3 (0) | 2024.05.04 |