반응형
알고리즘 분류
- 백트래킹
SOLUTION
import sys
from itertools import combinations_with_replacement
N, M = map(int, sys.stdin.readline().split())
# combinations_with_replacement(iterable, r) : r길이 튜플들, 정렬된 순서, 반복되는 요소 있음
combi_replace = list(combinations_with_replacement([i for i in range(1,N+1)], M))
for i in combi_replace:
print(*i) # *를 이용해 unpacking
'코딩테스트 대비 > BOJ' 카테고리의 다른 글
[Baekjoon/Python] 15657번: N과 M (8) - 효과는 굉장했다! (0) | 2022.03.14 |
---|---|
[Baekjoon/Python] 15654번: N과 M (5) - 효과는 굉장했다! (0) | 2022.03.14 |
[Baekjoon/Python] 15650번: N과 M (2) - 효과는 굉장했다! (0) | 2022.03.14 |
[Baekjoon/Python] 2407번: 조합 - 효과는 굉장했다! (0) | 2022.03.14 |
[Baekjoon/Python] 9019번: DSLR - 효과는 굉장했다! (0) | 2022.03.09 |