문제
코드
My answer
n=int(input())
result=1
for i in range(n,1,-1):
result*=i
print(result)
Another answer
import math
print(math.factorial(int(input())))
풀이
math라이브러리의 factorial함수를 이용해도 된다.
728x90
반응형
'코딩테스트 > 백준[Python]' 카테고리의 다른 글
[Python] 백준 #2004- 조합 0의 개수 (0) | 2021.12.07 |
---|---|
[Python] 백준 #1676- 팩토리얼 0의 개수 (0) | 2021.12.07 |
[Python] 백준 #11653- 소인수분해 (0) | 2021.12.07 |
[Python] 백준 #1929- 소수 구하기 (0) | 2021.12.07 |
[Python/백준] #11576- [Base Conversion] (0) | 2021.12.07 |