ps | |
---|---|
링크 | acmicpc.net/… |
출처 | BOJ |
문제 번호 | 2407 |
문제명 | 조합 |
레벨 | 실버 2 |
분류 |
수학, BigInteger |
시간복잡도 | O(n) |
인풋사이즈 | n<=100 |
사용한 언어 | Python |
제출기록 | 30888KB / 64ms |
최고기록 | 52ms |
해결날짜 | 2021/01/19 |
"""Solution code for "BOJ 2407. 조합".
- Problem link: https://www.acmicpc.net/problem/2407
- Solution link: http://www.teferi.net/ps/problems/boj/2407
"""
import math
def main():
n, m = [int(x) for x in input().split()]
print(math.comb(n, m))
if __name__ == '__main__':
main()