https://www.acmicpc.net/problem/6603
백준 6603 '로또' 문제입니다.
itertools 모듈의 combination을 이용하면 간단하게 구현할 수 있습니다.
import sys
from itertools import combinations
input = sys.stdin.readline
while True:
x = list(map(int, input().split()))
if x[0] == 0:
break
num = x[0]
nums = x[1:]
result = list(combinations(nums,6))
for re in result:
print(*re)
print()
'백준 알고리즘' 카테고리의 다른 글
파이썬) 백준 알고리즘 | 15654번 : N과 M (5) (0) | 2022.03.03 |
---|---|
파이썬) 백준 알고리즘 | 15651번 : N과 M (3) (0) | 2022.03.03 |
파이썬) 백준 알고리즘 | 16165번 : 걸그룹 마스터 준석이 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 2910번 : 빈도 정렬 (0) | 2022.03.02 |
파이썬) 백준 알고리즘 | 1351번 : 무한 수열 (0) | 2022.03.02 |
댓글