반응형
문제 정보
제출 코드
def fibonacci(n1, n2, count, n):
if(count==n):
return n1+n2
return fibonacci(n2, n1+n2, count+1, n)
n = int(input())
if(n==0):
print(0)
elif(n==1 or n==2):
print(1)
else:
print(fibonacci(0,1,2,n))
'Study > 알고리즘' 카테고리의 다른 글
[백준 알고리즘] 10872번 Python (0) | 2021.10.04 |
---|---|
[백준 알고리즘] 1002번 Python (0) | 2021.10.04 |
[백준 알고리즘] 3053번 Python (0) | 2021.10.04 |
[백준 알고리즘] 4153번 Python (0) | 2021.10.04 |
[백준 알고리즘] 3009번 Python (0) | 2021.10.04 |
댓글