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)
'코딩테스트 > 백준' 카테고리의 다른 글
[Python] 백준 1002. 터렛 (1) | 2024.01.23 |
---|---|
[Python] 백준 2667번. 단지번호 붙이기 (0) | 2024.01.18 |
[Python] 백준 12015번. 가장 긴 증가하는 부분 수열2 (0) | 2023.12.19 |
[Python] 백준 2108번. 통계학 (1) | 2023.12.19 |
[Python] 백준 11651번. 좌표 정렬하기 2 (0) | 2023.12.18 |