BOJ

백준 10872. 팩토리얼 [Python]

Hoo_Dev 2022. 3. 29. 00:10
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