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
- Docker
- 프로그래머스
- dacon
- leetcode
- programmers
- 편스토랑
- Git
- SW Expert Academy
- ChatGPT
- 캐치카페
- Kaggle
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- 코로나19
- Baekjoon
- 데이콘
- 금융문자분석경진대회
- github
- PYTHON
- 백준
- 우분투
- 맥북
- AI 경진대회
- 프로그래머스 파이썬
- 더현대서울 맛집
- hackerrank
- ubuntu
- 파이썬
- 편스토랑 우승상품
- gs25
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