[6/28] 15652 (N과 M (4))

이경준·2021년 6월 28일
0

코테

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

실버3 문제

코드

from itertools import combinations_with_replacement

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

로직

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

0개의 댓글