-Code
from math import factorial
n = int(input())
if n < 5:
print(0)
exit()
print(factorial(n) // (factorial(5) * factorial(n - 5)))
'Beakjoon&프로그래머스 > 파이썬' 카테고리의 다른 글
[백준/파이썬] 12250번 New Lottery Game (Small) (0) | 2024.03.02 |
---|---|
[백준/파이썬] 31450번 Everyone is a winner (0) | 2024.03.01 |
[백준/파이썬] 7279번 Autobusas (0) | 2024.02.28 |
[백준/파이썬] 8826번 Spacer (0) | 2024.02.27 |
[백준/파이썬] 21200번 Forced Choice (0) | 2024.02.26 |