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