https://www.acmicpc.net/problem/15654
백준 15654 'N과 M (5)' 문제입니다.
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):
if nums[i] not in s:
s.append(nums[i])
dfs()
s.pop()
dfs()
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 15652번 : N과 M (4) (0) | 2022.03.03 |
---|---|
파이썬) 백준 알고리즘 | 15656번 : N과 M (7) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 15651번 : N과 M (3) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 6603번 : 로또 (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 16165번 : 걸그룹 마스터 준석이 (0) | 2022.03.02 |
댓글