본문 바로가기
python-algorithm

백준 15651 N과 M (3)

by 무적김두칠 2022. 1. 10.

1
2
3
4
5
6
7
8
9
10
11
12
n,m=map(int,input().split())
s=[]
def dfs():
    if len(s)==m:
        tmp=(" ".join(map(str, s)))
        print(tmp)
        return
    for i in range(1,n+1):
        s.append(i)
        dfs()
        s.pop()
dfs()
cs
반응형

'python-algorithm' 카테고리의 다른 글

백준 없는 숫자 더하기  (0) 2022.01.16
백준 16199 나이 계산하기  (0) 2022.01.14
백준 15650 N과 M (2)  (0) 2022.01.10
백준 15649 N과 M (1)  (0) 2022.01.10
백준 13610 Volta  (0) 2022.01.10

댓글