[백준 알고리즘] 2748번 피보나치 수 2 (Python)언어, 알고리즘 공부/백준2020. 4. 30. 17:19
Table of Contents
<Python>
n = int(input())
fibo_array = [0 for _ in range(n+1)]
fibo_array[1] = 1
for i in range(2, n+1):
fibo_array[i] = fibo_array[i-1]+fibo_array[i-2]
print(fibo_array[-1])
▼링크
https://www.acmicpc.net/problem/2748
반응형
'언어, 알고리즘 공부 > 백준' 카테고리의 다른 글
[백준 알고리즘] 11866번 요세푸스 문제 0 (Python) (0) | 2020.05.01 |
---|---|
[백준 알고리즘] 2164번 카드2 (Python) (0) | 2020.05.01 |
[백준 알고리즘] 2751번 수 정렬하기 2 (Python) (0) | 2020.04.29 |
[백준 알고리즘] 2108번 통계학 (Python) (0) | 2020.04.29 |
[백준 알고리즘] 10814번 나이순 정렬 (Python) (0) | 2020.04.29 |
@쿠몬e :: ˚˛˚ * December☃ 。* 。˛˚
전공 공부 기록 📘
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!