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