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 | 31 |
Tags
- 백준
- Java
- 기초100제
- react
- 정렬
- Operating System
- 공부
- error
- js to ts
- 토이프로젝트
- web
- 알고리즘
- 파이썬
- 협업
- 자료구조
- 코드업
- Spring
- 일상
- CPU 스케줄링
- 리덕스장바구니
- 타입스크립트
- 스프링
- react-redux
- OS
- 분할메모리할당
- memory
- Redux
- C++
- 프로그래머스
- codeup
Archives
- Today
- Total
목록11050 (1)
감자튀김 공장🍟
[백준/11050] 이항 계수 1 (with 파이썬)
✔ 문제 ✔ 풀이 import sys input = sys.stdin.readline def factorial(x): if x == 0: return 1 return x * factorial(x-1) n, k = map(int, input().split()) print(factorial(n) // (factorial(k) * factorial(n-k))) ✔ 설명 ( n ) ( k ) 는 nCk로 나타낼 수 있다. nCk 공식은 위와 같이 풀 수 있기 때문에 factorial 재귀 함수를 만들어 문제를 풀면 된다.
Algorithm/BOJ
2022. 12. 20. 12:46