문제
https://www.acmicpc.net/problem/6603
설계
- 조합 라이브러리를 사용했다.
# 로또
from itertools import combinations
while 1:
arr = list(map(int, input().split()))
if arr == [0]: # 0이 나올 경우 종료
break
N = arr[0] # 개수인 N 저장 후 빼내기
arr.pop(0)
for i in combinations(arr, 6):
print(*list(i))
print()
'PS (Problem Solving) > Baekjoon' 카테고리의 다른 글
[백준] 1758. 알바생 강호 - 파이썬 (0) | 2023.01.04 |
---|---|
[백준] 9342. 염색체 - 파이썬 (1) | 2022.12.28 |
[백준] 10798. 세로읽기 (0) | 2022.12.16 |
[백준] 1417. 국회의원 선거 (0) | 2022.12.15 |
[백준] 1931. 회의실 배정 (0) | 2022.07.23 |