황소개발자

백준 15655 파이썬 python : N과 M (6) @@황소처럼 우직하게@@ 본문

백준 문제 풀이

백준 15655 파이썬 python : N과 M (6) @@황소처럼 우직하게@@

hjp845 2020. 3. 2. 00:46
반응형
n, m = map(int , input().split())

num_list = list(map(int, input().split()))
num_list.sort()

a = [0 for i in range(m)]

def go(idx, selected, n, m):
    if selected == m:
        print(' '.join(map(str, a)))
        return
    if idx == n:
        return
    a[selected] = num_list[idx]
    go(idx + 1, selected + 1, n, m)
    a[selected] = 0
    go(idx + 1, selected, n, m)

go(0, 0, n, m)
반응형
Comments