[Python] BOJ 15655번. N과 M (6)

15655번. N과 M (6)

문제 링크

풀이 코드

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


from itertools import combinations
import sys
input = sys.stdin.readline

n, m = map(int, input().split())
nList = list(map(int, input().split()))
nList.sort()
cList = list(combinations(nList, m))

for c in cList:
    print(*c)

비고