코딩테스트/백준
[Python] 백준 15650번. N과 M(2)
jungmin.park
2023. 12. 26. 09:27
https://www.acmicpc.net/problem/15650
문제 설명
예제2 출력 결과를 보면 조합이라는 것을 바로 알 수 있다.
1 2
1 3
1 4
2 3
2 4
3 4
풀이설계
파이썬 itertools모듈의 combinations 를 사용하면 금방 풀 수 있다.
import sys
from itertools import combinations
input = sys.stdin.readline
n, m = map(int, input().split())
lst = [i for i in range(1,n+1)]
for ele in combinations(lst, m):
#print(str(list(ele)).replace("[", "").replace("]", "").replace(",", ""))
print(*ele)