- 문제 : 팩토리얼
- 난이도 : 브론즈 3
- 언어 : Python
- 문제 링크 : https://www.acmicpc.net/problem/10872
def factorial(n):
if n == 0:
return 1
else:
return n * factorial(n-1)
N = int(input())
print(factorial(N))
단순 재귀문제
'BOJ' 카테고리의 다른 글
백준 1931. 회의실 배정 [Python] (0) | 2022.03.31 |
---|---|
백준 2309. 일곱 난쟁이 [Python] (0) | 2022.03.29 |
백준 2798. 블랙잭 [Python] (0) | 2022.03.29 |
백준 10870. 피보나치 수 5 [Python] (0) | 2022.03.29 |
백준 1260. DFS와 BFS [Python] (0) | 2022.03.27 |