[6/28] 15650 (N과 M (2))

이경준·2021년 6월 28일
0

코테

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

실버3 문제

코드

from itertools import combinations

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

로직

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

0개의 댓글