Cometin'

BOJ-10870 - Python

2020-10-12 at Algorithm category

n번째 피보나치 수열의 수를 출력하는 문제. 재귀를 이용하여 풀었다.

def f(n):
    return n if n <= 1 else f(n-1) + f(n-2)
print(f(int(input())))

hyesungoh

Personal blog by hyesungoh.

I like to share my knowledge for those who wandering in issue.