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
- 기초100제
- C++
- 프로그래머스
- 자료구조
- web
- OS
- 공부
- 리덕스장바구니
- 협업
- 일상
- Java
- codeup
- 타입스크립트
- react-redux
- 알고리즘
- memory
- react
- error
- 정렬
- 토이프로젝트
- CPU 스케줄링
- Spring
- Redux
- 백준
- Operating System
- 파이썬
- 분할메모리할당
- 스프링
- 코드업
- js to ts
Archives
- Today
- Total
감자튀김 공장🍟
[백준/11051] 이항 계수 2 (with 파이썬) 본문
반응형
✔ 문제
✔ 풀이
👾 답안1
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))) % 10007)
👻 math 라이브러리 사용
import sys
from math import factorial
input = sys.stdin.readline
n, k = map(int, input().split())
def binomal(n, k):
return factorial(n) // factorial(k) // factorial(n-k)
print(binomal(n,k) % 10007)
✔ 후기
factorial 라이브러리를 사용하는 것이 재귀를 사용하는 것보다 더 빠르게 값이 나온다.
반응형
'Algorithm > BOJ' 카테고리의 다른 글
[백준/9375] 패션왕 신해빈 (with 파이썬) (0) | 2022.12.23 |
---|---|
[백준/1010] 다리 놓기 (with 파이썬) (0) | 2022.12.22 |
[백준/11050] 이항 계수 1 (with 파이썬) (0) | 2022.12.20 |
[백준/3036] 링 (with 파이썬) (0) | 2022.12.19 |
[백준/2981] 검문 (with 파이썬) (0) | 2022.12.18 |
Comments