2021-02-07
문제 : https://www.acmicpc.net/problem/15650
이번에는 조합으로 풀었다
[소스코드]
https://github.com/jisun1125/algorithm-problem-solving/blob/main/baekjoon/no_15650.py
from itertools import permutations, combinations
n, m = map(int, input().split())
k = []
for i in range(n):
k.append(i+1)
per = combinations(k, m)
for p in per:
for i in p:
print(i, end=' ')
print('')
'PS > 백준' 카테고리의 다른 글
[백준/Python(파이썬)] 15652 N과 M (4) (0) | 2021.02.14 |
---|---|
[백준/Python(파이썬)] 15651 N과 M (3) (0) | 2021.02.14 |
[백준/Python(파이썬)] 15649 N과 M (1) (0) | 2021.02.14 |
[백준/Python(파이썬)] 14500 테트로미노 (0) | 2021.02.14 |
[백준/Python(파이썬)] 13023 ABCDE (0) | 2021.02.14 |