https://www.acmicpc.net/problem/15655
Python Code
from itertools import combinations
N, M = map(int, input().split())
N_list = list(map(int, input().split()))
N_list = sorted(N_list) #순서대로 나오게 정렬 먼저
for numbers in list(combinations(N_list, M)): #조합 메써드 이용
for num in numbers:
print(num, end=' ')
print()
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#256 백준 파이썬 [15657] N 과 M (8) - 중복조합 (0) | 2019.12.04 |
---|---|
#255 백준 파이썬 [15664] N과 M (7) - 중복 순열 (0) | 2019.12.04 |
#253 백준 파이썬 [10996] 별 찍기 - 21 (0) | 2019.12.04 |
#252 백준 파이썬 [2167] 2차원 배열의 합 (0) | 2019.12.03 |
#251 백준 파이썬 [13420] 사칙연산 (0) | 2019.12.03 |