목차

조합

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()