백트래킹_N과M(4)

Eugenius1st·2022년 9월 28일
0

Algorithm_Baekjoon

목록 보기
138/158
post-thumbnail

백트래킹_N과M(4)

문제


코드

import sys
#sys.stdin=open("input.txt", "rt")

M,N = map(int,input().split())
s = []
def dfs(start):
    if(len(s) == N):
        print(' '.join(map(str,s)))
        return
    for i in range(start,M+1):
        s.append(i)
        dfs(i)
        s.pop()

dfs(1)
profile
최강 프론트엔드 개발자가 되고싶은 안유진 입니다

0개의 댓글