https://www.acmicpc.net/problem/15665
Python Code
from itertools import product
N, M = map(int, input().split())
N_list = list(map(int, input().split()))
N_list = list(set(N_list)) #중복 값 제거
N_list = sorted(N_list) #순서대로 나오게 정렬 먼저
for numbers in list(product(N_list, repeat = M)):
for num in numbers:
print(num, end=' ')
print()
'Programming [Python] > 백준 알고리즘 솔루션' 카테고리의 다른 글
#261 백준 파이썬 [2566] 최댓값 (0) | 2019.12.04 |
---|---|
#260 백준 파이썬 [15663] N과 M (9) - 순열 (0) | 2019.12.04 |
#258 백준 파이썬 [15666] N과 M (12) - 중복 조합 (0) | 2019.12.04 |
#257 백준 파이썬 [15664] N과 M (10) - 조합 (0) | 2019.12.04 |
#256 백준 파이썬 [15657] N 과 M (8) - 중복조합 (0) | 2019.12.04 |