Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- gs25
- SW Expert Academy
- Git
- dacon
- AI 경진대회
- leetcode
- 캐치카페
- 파이썬
- Baekjoon
- 더현대서울 맛집
- programmers
- 편스토랑 우승상품
- Real or Not? NLP with Disaster Tweets
- PYTHON
- 백준
- 자연어처리
- ubuntu
- 금융문자분석경진대회
- 코로나19
- 편스토랑
- hackerrank
- Kaggle
- ChatGPT
- 프로그래머스
- 프로그래머스 파이썬
- github
- Docker
- 우분투
- 맥북
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[BaeKJoon] 9461번: 파도반 수열 (Python) 본문
728x90
반응형
1일 1문제 116일차!
오늘의 문제는 백준의 파도반 수열 입니다.
Solution
loopNum = int(input())
nums = []
answer = []
for i in range(loopNum):
inputNum = int(input())
nums.append(inputNum)
for iN in nums:
if iN <= 5:
P = [1, 1, 1, 2, 2]
answer.append(P[iN-1])
else:
P = [1, 1, 1, 2, 2] + [0] * (iN-5)
for i in range(5, iN):
P[i] = P[i-2] + P[i-3]
answer.append(P[iN-1])
for ans in answer:
print(ans)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 75. Sort Colors (Python) (2) | 2020.06.03 |
---|---|
[leetCode] 50. Pow(x, n) (Python) (0) | 2020.06.02 |
[BaeKJoon] 1699번: 제곱수의 합 (Python) (0) | 2020.06.01 |
[BaeKJoon] 2745번: 진법 변환 (Python) (0) | 2020.05.30 |
[BaeKJoon] 2225번: 합분해 (Python) (0) | 2020.05.30 |
Comments