https://www.acmicpc.net/problem/15654
Python Code
from itertools import permutations
N, M = map(int, input().split())
N_list = list(map(int, input().split()))
N_list = sorted(N_list) #순서대로 나오게 정렬 먼저
for numbers in list(permutations(N_list, M)):
for num in numbers:
print(num, end=' ')
print()
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#252 백준 파이썬 [2167] 2차원 배열의 합 (0) | 2019.12.03 |
---|---|
#251 백준 파이썬 [13420] 사칙연산 (0) | 2019.12.03 |
#249 백준 파이썬 [16194] 카드 구매하기 2 (0) | 2019.12.03 |
#248 백준 파이썬 [2563] 색종이 (0) | 2019.12.03 |
#247 백준 파이썬 [10990] 별 찍기 - 15 (0) | 2019.12.03 |