[백준] #10872 팩토리얼 python
2022. 12. 28. 00:07
https://www.acmicpc.net/problem/10872
📕 설명 📕
팩토리얼을 구현한 재귀 함수
🧑🏻💻 나의 풀이 🧑🏻💻
N = int(input())
def factorial(N):
if N == 0:
return 1
if N == 1:
return 1
return N * factorial(N-1)
print(factorial(N))
'Programming > Algorithm' 카테고리의 다른 글
[백준] #24060 알고리즘 수업 - 병합 정렬 1 python (0) | 2022.12.28 |
---|---|
[백준] #25501 재귀의 귀재 python (0) | 2022.12.28 |
[백준] #10870 피보나치 수 5 python (0) | 2022.12.28 |
[백준] #18870 좌표 압축 python (0) | 2022.12.27 |
[백준] #10814 나이순 정렬 python (0) | 2022.12.27 |