728x90
N과 M$($1$)$, $($2$)$와 거의 같아서 링크와 코드만 올려봅니다.
15654번: N과 M (5) (acmicpc.net)
import sys
from itertools import permutations
input = sys.stdin.readlin
N, M = map(int, input().split())
li = sorted(list(map(int, input().split())))
pm = permutations(li, M)
for p in pm:
print(*p)
15655번: N과 M (6) (acmicpc.net)
import sys
from itertools import combinations
input = sys.stdin.readline
N, M = map(int, input().split())
li = sorted(list(map(int, input().split())))
pm = combinations(li, M)
for p in pm:
print(*p)
'IT > Python' 카테고리의 다른 글
[백준] 1269번 대칭 차집합 [Python] - 집합 (0) | 2023.08.07 |
---|---|
[백준] 1002번 터렛 [Python] - 두 원의 위치 관계 (0) | 2023.08.07 |
[백준] 11726번 2×n 타일링 [Python] (0) | 2023.08.02 |
[백준] 1475번 방 번호 [Python] (0) | 2023.08.01 |