[Python] BOJ 15663번. N과 M (9)

15663번. N과 M (9)

문제 링크

풀이 코드

1
2
3
4
5
6
7
8
9
10
11
12
13
# 15663번. N과 M (9)


from itertools import permutations
n, m = map(int, input().split())
nList = list(map(int, input().split()))
# nList.sort()
cList = list(set(permutations(nList, m)))
cList.sort()
for c in cList:
    for i in c:
        print(i, end=' ')
    print()

비고