반응형
# @Author YoungMinKim
# baekjoon
import itertools
import sys
while True:
a = list(map(int,sys.stdin.readline().split()))
if a == [0]:
break
event = list(itertools.combinations(a[1:], 6))
for i in event:
for j in i:
print(j,end=' ')
print()
print()
itertools 라는 라이브러리를 통해 경우의 수를 계산할 수 있다.
문제에선 Combination 경우의 수를 뽑는 것이므로 combinations 함수를 사용하였다.
반응형
'백준 문제풀이' 카테고리의 다른 글
baekjoon - python - 1735 (0) | 2020.11.24 |
---|---|
baekjoon - python - 9093 (0) | 2020.11.22 |
baekjoon - python - 10101 (0) | 2020.10.28 |
baekjoon - python - 7567 (0) | 2020.10.28 |
baekjoon - python - 15740 (0) | 2020.10.25 |
댓글