Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- Data Structure
- Number Theory
- java
- Method
- database
- Stack
- Counting
- 구현
- Binary Search
- simulation
- SQL
- Tree
- two pointers
- 파이썬
- hash table
- 코테
- Math
- Matrix
- 자바
- Binary Tree
- geometry
- 코딩테스트
- greedy
- string
- dynamic programming
- Class
- sorting
- array
- implement
- bit manipulation
Archives
- Today
- Total
코린이의 소소한 공부노트
[백준 온라인 저지] 11050. 이항 계수 1 본문
- 입력: 첫째 줄에 N과 K가 주어진다. (1<=N<=10, 0<=K<=N)
- 출력: NCK를 출력한다.
import java.util.*;
class Main{
public static void main(String[] args){
Scanner scan = new Scanner(System.in);
int n = scan.nextInt(), k = scan.nextInt();
System.out.print(comb(n,k));
}
static int comb(int n, int k){
int answer;
if(k==0 || k==n) answer = 1;
else if(k==1 || k==n-1) answer = n;
else answer = comb(n-1,k) + comb(n-1,k-1);
return answer;
}
}
'코딩테스트 풀이 > JAVA' 카테고리의 다른 글
[LeetCode/Easy] 933. Number of Recent Calls (0) | 2023.03.31 |
---|---|
[LeetCode/Easy] 917. Reverse Only Letters (0) | 2023.03.31 |
[백준 온라인 저지] 10872. 팩토리얼 (0) | 2023.03.31 |
[백준 온라인 저지] 24723. 녹색거탑 (0) | 2023.03.31 |
[LeetCode/Easy] 819. Most Common Word (0) | 2023.03.31 |