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
- 이항계수
- 한반도평화와공공외교
- Python
- 백준 14501번
- BTREE
- 문제 풀이
- CSS
- 풍선터뜨리기
- B-tree
- 백준 11050번
- 풀이
- 실버
- 백준 1487번
- DP 알고리즘
- 0의 개수
- hashing
- 가치규범의 공공외교
- 1141번
- 연산자 문제
- 주창형 공공외교
- html
- 백준
- 챗봇
- 해싱
- 해설
- 1
- 알고리즘
- 파이썬
- 백준 1246번
- N과 M
Archives
- Today
- Total
목록백준 11050번 (2)
SunFly의 코딩 및 정보 블로그
[파이썬(Python)] 백준 11051번 : 이항계수 2
풀이 import sys def factorial(x): # 팩토리얼 res = 1 for i in range(1, x+1): res *= i return res input = sys.stdin.readline N, K = map(int, input().split()) result = factorial(N) // (factorial(K) * factorial(N-K)) total = result % 10007 print(total)
백준(BaekJoon)
2022. 2. 26. 11:26
[파이썬(Python)] 백준 11050번 : 이항 계수 1
풀이 팩토리얼을 사용하여 푼다. 이항계수는 N, K가 주어질때, N! / (N-K)! K! 이므로 식을 구한다. import sys def factorial(x): res = 1 for i in range(1, x + 1): res *= i return res def calc(x, y): k = factorial(x) l = factorial(x - y) * factorial(y) res = k // l return res input = sys.stdin.readline N, K = map(int, input().split()) print(calc(N, K))
백준(BaekJoon)
2022. 2. 25. 23:10