반응형
[ Contents ]
1. 문제 (링크 참조)
2. 문제 풀이
주어진 수열에서 M개를 뽑는 조합을 구하는 문제입니다.
itertools.combinations(lst, n): lst에서 n개를 뽑는 조합
itertools 라이브러리의 combinations() 함수를 사용하면 쉽게 구할 수 있습니다.
3. 코드
from itertools import combinations
N, M = map(int, input().split())
numlist = list(map(int, input().split()))
case = combinations(sorted(numlist), M)
for i in case:
for j in i:
print(j, end=" ")
print()
반응형
'Algorithm' 카테고리의 다른 글
[Brute Force] 백준 15663 N과 M (9) - 파이썬(Python) (0) | 2022.04.09 |
---|---|
[Brute Force] 백준 15656 N과 M (7) - 파이썬(Python) (0) | 2022.04.08 |
[Brute Force] 백준 15651 N과 M (3) - 파이썬(Python) (0) | 2022.04.06 |
[Brute Force] 백준 15659 N과 M (1) - 파이썬(Python) (0) | 2022.04.05 |
[Brute Force] 백준 15666 N과 M (12) - 파이썬(Python) (0) | 2022.04.04 |
댓글