728x90
반응형
기본적인 다이나믹 프로그래밍 문제이다.
n, k = map(int, input().split())
li = [[1], [1, 1]]
for i in range(2, n):
t = [1]
for j in range(1, i):
t.append(li[i-1][j-1]+li[i-1][j])
t.append(1)
li.append(t)
print(li[n-1][k-1])
728x90
반응형
'Agorithm > 백준 알고리즘' 카테고리의 다른 글
백준 알고리즘 2670번 연속부분최대곱(python) (0) | 2021.03.17 |
---|---|
백준 알고리즘 15489번 파스칼 삼각형(python) (0) | 2021.03.17 |
백준 알고리즘 6080번 Bad Grass(python) (0) | 2021.03.17 |
백준 알고리즘 20540번 연길이의 이상형(python) (0) | 2021.03.17 |
백준 알고리즘 6189번 Munching(python) (0) | 2021.03.17 |