728x90
바로 전 문제는 순열문제였던 것 같은데
이번에는 조합 문제!
from itertools import combinations
N,M=map(int,input().split())
numlist=map(str,range(1,N+1))
setlist=sorted(list(combinations(numlist,M)))
print('\n'.join(list(map(' '.join,setlist))))
어차피 순서대로 조합이 만들어지는 거긴 하지만
Sort를 했다.
728x90
'Baekjoon Case' 카테고리의 다른 글
[백준 #15652] N과 M(4) - 파이썬(python) (0) | 2021.08.14 |
---|---|
[백준 #15651] N과 M(3) - 파이썬(python) (0) | 2021.08.14 |
[백준 #15649] N과 M(1) - 파이썬(python) (0) | 2021.08.13 |
[백준 #18870] 좌표 압축 - 파이썬(python) (0) | 2021.08.13 |
[백준 #10814] 나이순 정렬 - 파이썬(python) (0) | 2021.08.13 |