파게로그
[백준 10870번] 피보나치 본문
문제 링크: 백준 10870번 피보나치 수 5
https://www.acmicpc.net/problem/10870
DP 없이 피보나치 수 느리게 구하기!
def fibo(n):
if n==0: return 0
if n==1: return 1
return fibo(n-1)+fibo(n-2)
n = int(input())
print(fibo(n))
'콤퓨타 왕왕기초 > PS' 카테고리의 다른 글
[백준 11729번] 하노이의 탑 (0) | 2020.11.02 |
---|---|
[백준 2447번] 별 찍기 10 (0) | 2020.11.02 |
[백준 10872번] 팩토리얼 (0) | 2020.10.30 |
[백준 1002번] 터렛, 두 원의 교점의 개수 (0) | 2020.10.30 |
[백준 3053번] 택시 기하학 (0) | 2020.10.30 |
Comments