출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기


매우 간단한 재귀함수 문제이다:

import sys

N = int(sys.stdin.readline())

factorial = 1

for i in range(1, N+1):
    factorial *= i

print(factorial)

단순히 for문으로 구현을 해주면 된다.