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
- 자연어처리
- 캐치카페
- Real or Not? NLP with Disaster Tweets
- 파이썬
- SW Expert Academy
- programmers
- 우분투
- Git
- github
- Baekjoon
- 더현대서울 맛집
- Kaggle
- dacon
- PYTHON
- 코로나19
- 맥북
- 데이콘
- leetcode
- hackerrank
- 프로그래머스
- ChatGPT
- 편스토랑 우승상품
- 금융문자분석경진대회
- 백준
- gs25
- ubuntu
- AI 경진대회
- 편스토랑
- Docker
- 프로그래머스 파이썬
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 9095번 : 1, 2, 3 더하기 (Python) 본문
728x90
반응형
1일 1문제 153일차!
153일차의 문제는 백준의 1, 2, 3 더하기 입니다.
Solution
loopN = int(input())
answers = []
for i in range(loopN):
inputNum = int(input())
if inputNum == 1:
answers.append(1)
elif inputNum == 2:
answers.append(2)
elif inputNum == 3:
answers.append(4)
else:
ans = [0] * inputNum
ans[0] = 1
ans[1] = 2
ans[2] = 4
for i in range(3, inputNum):
ans[i] = ans[i-1] + ans[i-2] + ans[i-3]
answers.append(ans[i])
for answer in answers:
print(answer)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Day 14: Scope (Python) (0) | 2020.07.10 |
---|---|
[leetCode] 198. House Robber (Python) (0) | 2020.07.09 |
[BaekJoon] 10808번 : 알파벳 개수 (Python) (0) | 2020.07.07 |
[BaekJoon] 10809번 : 알파벳 찾기 (Python) (0) | 2020.07.06 |
[BaekJoon] 1373번 : 2진수 8진수 (Python) (0) | 2020.07.06 |
Comments