티스토리 뷰
https://www.acmicpc.net/problem/6603
* DFS
import sys
def lotto(n, k):
if k == 6:
for i in range(6):
print(ans[i], end = ' ')
print()
return
for i in range(n, seq[0]+1):
ans[k] = seq[i]
lotto(i+1, k+1)
while(1):
seq = list(map(int, sys.stdin.readline().split()))
ans = [0] * 6
if seq[0] == 0:
break
lotto(1, 0)
print()
'Algorithm > Baekjoon' 카테고리의 다른 글
[백준] 14889 : 스타트와 링크 - Python (0) | 2020.06.24 |
---|---|
[백준] 6064 : 카잉 달력 - Python (0) | 2020.04.25 |
[백준] 11724 : 연결 요소의 개수 - Python (0) | 2020.04.23 |
[백준] 1912 : 연속합 - Python (0) | 2020.04.23 |
[백준] 1932 : 정수 삼각형 - Python (0) | 2020.04.21 |