[Python] BOJ 15666번. N과 M (12) 작성일 2020-06-08 | In Algorithm | 15666번. N과 M (12) 문제 링크 https://www.acmicpc.net/problem/15666 풀이 코드 1234567891011121314# 15666번. N과 M (12) from itertools import combinations_with_replacement n, m = map(int, input().split()) nList = list(map(int, input().split())) nList.sort() cList = list(set(combinations_with_replacement(nList, m))) cList.sort() for c in cList: for i in c: print(i, end=' ') print() 비고