solution
1. 조합 이용
2. lst = range(1, n+1)
# 15650, N과 M(2)
import sys
from itertools import combinations
n, m = map(int, sys.stdin.readline().split())
lst = range(1, n + 1)
res = list(combinations(lst, m))
for res_ in res:
print(*res_)
29380KB
60ms
문제 출처 https://www.acmicpc.net/problem/15650
'알고리즘 > 백트래킹' 카테고리의 다른 글
파이썬 | 백준 | 14888 | 연산자 끼워넣기 (0) | 2020.08.25 |
---|