[Python] BOJ 15657번. N과 M (8)

15652번. N과 M (8)

문제 링크

풀이 코드

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


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

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

비고