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
- 맥북
- 자연어처리
- ChatGPT
- ubuntu
- 금융문자분석경진대회
- Real or Not? NLP with Disaster Tweets
- 캐치카페
- PYTHON
- github
- hackerrank
- dacon
- 백준
- 더현대서울 맛집
- 프로그래머스
- programmers
- Kaggle
- Git
- 편스토랑 우승상품
- SW Expert Academy
- 코로나19
- 파이썬
- AI 경진대회
- gs25
- Docker
- 편스토랑
- 프로그래머스 파이썬
- 우분투
- Baekjoon
- leetcode
- 데이콘
Archives
- Today
- Total
솜씨좋은장씨
[BaekJoon] 2133번 : 타일 채우기 (Python) 본문
728x90
반응형
1일 1문제 55일차!
오늘의 문제는 백준의 타일 채우기 문제입니다.
Solution
inputNum = int(input())
nc = [0] * (inputNum+1)
for i in range(1, inputNum+1):
if i % 2 == 1 :
nc[i] = 0
elif i == 2 :
nc[i] = 3
else :
temp = 0
for j in range(2, i-1):
if j == i-2 :
temp += nc[j] * 3
elif j % 2 == 0 :
temp += nc[j] * 2
nc[i] = temp + 2
print(nc[inputNum])
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Min-Max Sum (Python) (0) | 2020.04.03 |
---|---|
[HackerRank] Staircase (Python) (0) | 2020.04.02 |
[BaeKJoon] 10610번: 30 (Python) (0) | 2020.03.31 |
[BaeKJoon] 11047번: 동전 0 (Python) (0) | 2020.03.30 |
[BaeKJoon] 11478번: 서로 다른 부분 문자열의 개수 (Python) (0) | 2020.03.29 |
Comments