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