https://www.acmicpc.net/problem/15650
문제
풀이
from itertools import combinations
n, m = map(int, input().split())
arr = [i for i in range(1, n+1)]
for s in combinations(arr, m):
print(*s)
1. 전 문제인 15649에서 오름차순이라는 조건이 추가
2. 순열-> 조합으로 생각하여 품
'Koala - 15기 > 기초 알고리즘 스터디' 카테고리의 다른 글
[백준/Python] 2852번 : NBA 농구 (0) | 2024.08.15 |
---|---|
[백준/Python] 1966번: 프린터 큐 (0) | 2024.08.12 |
[BOJ/Python3] 10972번 다음 순열 (0) | 2024.08.11 |
[백준/Python] 1718번 : 암호 (0) | 2024.08.11 |
[백준/Python] 1032번: 명령 프롬프트 (0) | 2024.08.10 |