- 문제 : N과 M (7)
- 난이도 : 실버 3
- 언어 : Python
- 문제 링크 : https://www.acmicpc.net/problem/1260
def recur(lev):
if lev == M:
print(*path)
return
for i in range(N):
path.append(arr[i])
recur(lev+1)
path.pop()
N, M = map(int, input().split())
arr = list(map(int, input().split()))
arr.sort()
path = []
recur(0)
중복 가능한 수열
'BOJ' 카테고리의 다른 글
백준 10815. 숫자 카드 [Python] (0) | 2022.06.10 |
---|---|
백준 15657. N과 M (8) [Python] (0) | 2022.06.04 |
백준 15655. N과 M (6) [Python] (0) | 2022.06.04 |
백준 15654. N과 M (5) [Python] (0) | 2022.06.04 |
백준 15652. N과 M (4) [Python] (0) | 2022.06.03 |