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
- hackerrank
- Baekjoon
- Kaggle
- 더현대서울 맛집
- 편스토랑
- 코로나19
- Real or Not? NLP with Disaster Tweets
- 자연어처리
- ChatGPT
- Docker
- 금융문자분석경진대회
- 우분투
- 캐치카페
- SW Expert Academy
- 백준
- Git
- github
- 편스토랑 우승상품
- 파이썬
- 맥북
- gs25
- ubuntu
- 데이콘
- 프로그래머스 파이썬
- AI 경진대회
- programmers
- 프로그래머스
- PYTHON
- leetcode
- dacon
Archives
- Today
- Total
솜씨좋은장씨
[BaeKJoon] 11057번: 오르막 수 (Python) 본문
728x90
반응형
1일 1문제 107일차!
오늘의 문제는 백준의 오르막 수 입니다.
Solution
inputNum = int(input())
nc = [[0]*10 for _ in range(inputNum+1)]
ans, mod = 0, 10007
for i in range(0, 10):
nc[1][i] = 1
for i in range(2, inputNum+1):
nc[i][0] = nc[i-1][0]
for j in range(1, 10):
nc[i][j] = (nc[i-1][j] + nc[i][j-1]) % mod
print(sum(nc[inputNum])%mod)
'Programming > 코딩 1일 1문제' 카테고리의 다른 글
[SW_Expert_Academy] 5549번 홀수일까 짝수일까 (Python) (0) | 2020.05.25 |
---|---|
[SW_Expert_Academy] 4522번 세상의 모든 팰린드롬 (Python) (0) | 2020.05.24 |
[SW_Expert_Academy] 5948번 새샘이의 7-3-5 게임 (Python) (0) | 2020.05.22 |
[SW_Expert_Academy] 5162번 두가지 빵의 딜레마 (Python) (0) | 2020.05.21 |
[leetCode] 66. Plus One (Python) (0) | 2020.05.20 |
Comments