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 |
Tags
- 백준
- AI 경진대회
- programmers
- leetcode
- 맥북
- Baekjoon
- 캐치카페
- 데이콘
- dacon
- 코로나19
- Git
- SW Expert Academy
- 파이썬
- gs25
- github
- Docker
- ubuntu
- 프로그래머스 파이썬
- 자연어처리
- 프로그래머스
- 더현대서울 맛집
- 금융문자분석경진대회
- ChatGPT
- 편스토랑
- PYTHON
- Real or Not? NLP with Disaster Tweets
- hackerrank
- 우분투
- Kaggle
- 편스토랑 우승상품
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2579번 : 계단 오르기 (Python) 본문
728x90
반응형
1일 1문제!
오늘은 1일 1문제의 100일차!!!!!!!
백준의 계단 오르기입니다.
Solution
inputNum = int(input())
stairScores = []
for i in range(inputNum):
inputScore = int(input())
stairScores.append(inputScore)
maxScore = [0] * inputNum
for i in range(inputNum):
if i == 0:
maxScore[0] = stairScores[i]
continue
elif i == 1:
maxScore[1] = stairScores[0] + stairScores[1]
continue
elif i == 2:
maxScore[2] = max(stairScores[0], stairScores[1]) + stairScores[2]
continue
maxScore[i] = max(maxScore[i-3] + stairScores[i-1], maxScore[i-2]) + stairScores[i]
print(maxScore[-1])
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[leetCode] 8. String to Integer (atoi) (Python) (0) | 2020.05.18 |
---|---|
[BaeKJoon] 11727번: 2xn타일링 2 (Python) (0) | 2020.05.17 |
[BaekJoon] 10820번 : 문자열 분석 (Python) (2) | 2020.05.15 |
[BaekJoon] 10845 : 큐 (Python) (0) | 2020.05.14 |
[leetCode] 6. ZigZag Conversion (Python) (0) | 2020.05.13 |
Comments