티스토리 뷰
https://www.acmicpc.net/problem/15651
import sys
N, M = map(int, sys.stdin.readline().split())
res = [0] * M
check = [0] * N
def go(index, n, m):
if index == m:
print(*res)
return
else:
for i in range(1, n+1):
check[i-1] = 1
res[index] = i
go(index+1, n, m)
check[i-1] = 0
go(0, N, M)
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 2579 : 계단 오르기 - Python (0) | 2020.04.15 |
---|---|
[백준] 15652 : N과 M (4) - Python (0) | 2020.04.14 |
[백준] 15650 : N과 M (2) - Python (0) | 2020.04.14 |
[백준] 15649 : N과 M (1) - Python (0) | 2020.04.14 |
[백준] 2751 : 수 정렬하기 2 - Python (0) | 2020.04.14 |