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
- Git
- Baekjoon
- ubuntu
- github
- Docker
- ChatGPT
- 자연어처리
- gs25
- hackerrank
- 편스토랑
- 백준
- 프로그래머스 파이썬
- PYTHON
- 편스토랑 우승상품
- 데이콘
- 금융문자분석경진대회
- 코로나19
- leetcode
- programmers
- 캐치카페
- AI 경진대회
- 프로그래머스
- 맥북
- SW Expert Academy
- Real or Not? NLP with Disaster Tweets
- 더현대서울 맛집
- 우분투
- Kaggle
- 파이썬
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[BaeKJoon] 10844번: 쉬운 계단수 (Python) 본문
728x90
반응형
1일 1문제 46일차!
오늘의 문제는 쉬운 계단수입니다.
Solution
inputNum = int(input())
nc = [[0]*10 for _ in range(inputNum+1)]
ans, mod = 0, 1000000000
for i in range(1, 10):
nc[1][i] = 1
for i in range(2, inputNum+1):
for j in range(0, 10):
if j > 0:
nc[i][j] += nc[i-1][j-1]
if j < 9:
nc[i][j] += nc[i-1][j+1]
nc[i][j] %= mod
# print(nc)
print(sum(nc[inputNum])%mod)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[HackerRank] Sorting : Mark and Toys (Python) (0) | 2020.03.25 |
---|---|
[leetCode] 929. Unique Email Addresses (Python) (0) | 2020.03.24 |
[HackerRank] Hash Tables : Ransom Note (Python) (0) | 2020.03.22 |
[SW_Expert_Academy] 4581번 문자열 재구성 프로젝트 (Python) (0) | 2020.03.21 |
[HackerRank] Stacks and Queues : Balanced Brackets (Python) (0) | 2020.03.20 |
Comments