def recursion(start):
if M == len(picked):
print (*picked)
return
for i in range(start, len(numbers)):
picked.append(numbers[i])
recursion(i)
picked.pop()
if __name__ == '__main__':
N, M = list(map(int, input().split()))
numbers = list(map(int, input().split()))
numbers.sort()
picked = []
recursion(0)
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 2141번 우체국 (파이썬) (1) | 2022.06.30 |
---|---|
[백준] 15658번 연산자 끼워넣기 (2) (파이썬) (0) | 2022.06.30 |
[백준] 15656번 N과 M (7) (파이썬) (0) | 2022.06.30 |
[백준] 15655번 N과 M (6) (파이썬) (0) | 2022.06.30 |
[백준] 15654번 N과 M (5) (파이썬) (0) | 2022.06.29 |