[6/28] 15649 (N과 M (1))

이경준·2021년 6월 28일
0

코테

목록 보기
53/140
post-custom-banner

실버3 문제

코드

from itertools import permutations

n, m = map(int, input().split())
arr = list(range(1, n+1))
answer = list(permutations(arr, m))
    
for i in answer:
    print(*i)

로직

  1. 1부터 n까지의 리스트 생성
  2. permutations 함수를 사용해서 m개의 리스트 조합을 생성 (순서O, 중복X)
  3. 출력
profile
The Show Must Go On

0개의 댓글