문제 링크 : www.acmicpc.net/problem/15650
조합의 경우들을 출력하는 것으로, itertools에 있는 combinations를 사용하면 간단하게 해결할 수 있다.
import sys
from itertools import combinations
N, M = map(int, sys.stdin.readline().split())
nums = list(range(1, N+1))
for combination in combinations(nums, M):
print(*combination)
'알고리즘 > 백준' 카테고리의 다른 글
[백준] 1003번 - 피보나치 함수 (0) | 2021.01.04 |
---|---|
[백준] 14888번 - 연산자 끼워넣기 (0) | 2021.01.04 |
[백준] 15649번 - N과 M(1) (0) | 2021.01.03 |
[백준] 14891번 - 톱니바퀴 (0) | 2021.01.03 |
[백준] 1449번 - 수리공 항승 (0) | 2021.01.03 |