[Python] BOJ 15666번. N과 M (12)

15666번. N과 M (12)

문제 링크

풀이 코드

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


from itertools import combinations_with_replacement
n, m = map(int, input().split())
nList = list(map(int, input().split()))
nList.sort()
cList = list(set(combinations_with_replacement(nList, m)))
cList.sort()

for c in cList:
    for i in c:
        print(i, end=' ')
    print()

비고