python의 permutation내장함수를 통해 풀 수 있는 문제
itertools.permutations()는 순열을 구해주고
itertools.combinations()는 조합을 구해준다.
from itertools import permutations
n, m = map(int,input().split())
number = permutations(range(1,n+1),m)
for i in number:
print(*i)
728x90
반응형
'Algorithm > 백준' 카테고리의 다른 글
듣보잡 - java (0) | 2022.04.17 |
---|---|
백준 1769 (0) | 2022.04.02 |
백준 10773 - 제로 python (0) | 2021.03.26 |
백준 10828 - 스택 python (0) | 2021.03.26 |
백준 4344 - 평균은 넘겠지 파이썬 (0) | 2021.03.23 |