https://www.acmicpc.net/problem/15656
백준 15656 'N과 M (7)' 문제입니다.
재귀 연습할 때 좋은 문제인 것 같습니다.
n, m = list(map(int, input().split()))
nums = list(map(int, input().split()))
nums.sort()
s = []
def dfs():
if len(s) == m:
print(' '.join(map(str, s)))
return
for i in range(n):
s.append(nums[i])
dfs()
s.pop()
dfs()
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 15655번 : N과 M (6) (0) | 2022.03.03 |
---|---|
파이썬) 백준 알고리즘 | 15652번 : N과 M (4) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15654번 : N과 M (5) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15651번 : N과 M (3) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 6603번 : 로또 (0) | 2022.03.03 |
댓글