https://www.acmicpc.net/problem/15650
#Solution
https://claude-u.tistory.com/161 와 크게 다르지 않다. permutations을 combinations로만 바꾸어 준다.
import itertools
N, M = map(int, input().split())
num_list = [i for i in range(1, N+1)]
for num in itertools.combinations(num_list, M):
for i in num:
print(i, end = ' ')
print(end = '\n')
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#117 백준 파이썬 [15652] N과 M (4) - 중복 조합 (0) | 2019.09.29 |
---|---|
#116 백준 파이썬 [15651] N과 M (3) - 중복 순열 (0) | 2019.09.29 |
#114 백준 파이썬 [15649] N과 M (1) - 순열 (0) | 2019.09.29 |
#113 백준 파이썬 [10845] 큐 (0) | 2019.09.29 |
#112 백준 파이썬 [10866] 덱 (0) | 2019.09.29 |