일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- Re
- 백준
- 수학
- 추석맞이 코딩챌린지
- Combinations
- 위클리 챌린지
- BFS
- Zip
- 카카오
- 정규식
- dfs
- DateTime
- backjoon
- 재귀함수
- 파이썬
- heapq
- 프로그래머스
- python
- divmod
- 그리디
- 정렬
- KAKAO BLIND RECRUITMENT
- 다익스트라
- programmers
- 동적 계획법
- 이분탐색
- Set
- java
- lambda
- 자바
Archives
- Today
- Total
상상쓰
[추석맞이 코딩챌린지①] 피보나치수 본문
https://cafe.naver.com/codeuniv/44826
fn = dp[n]
fn :=
{
0: if n = 0,
1: if n = 1,
fn-1 + fn-2: if n >= 2
}
import sys
n = int(sys.stdin.readline())
dp = [0] * (n + 1)
dp[1] = 1
for i in range(2, n+1):
dp[i] = dp[i-1] + dp[i-2]
print(dp[n])
'Coding Test' 카테고리의 다른 글
[추석맞이 코딩챌린지③] 블랙잭 (0) | 2021.09.21 |
---|---|
[추석맞이 코딩챌린지②] 정상 정복 (0) | 2021.09.20 |
[프로그래머스] 금과 은 운반하기 (0) | 2021.09.17 |
[백준] 인형들 (0) | 2021.09.16 |
[백준] 어린 왕자 (0) | 2021.09.15 |
Comments