728x90
반응형
https://www.acmicpc.net/problem/6603
문제 해결
combination(조합) 라이브러리만 쓸 줄 알 면 쉬운 문제
for문 반복으로 출력하면 된다.
CODE
from itertools import combinations
import sys
input = sys.stdin.readline
while 1:
S = list(map(int, input().split()))
if S[0] == 0:break
for comb in combinations(S[1:],6):
print(*comb)
print()
728x90
반응형
'알고리즘 > [python] 백준 BOJ' 카테고리의 다른 글
[python] 백준 15661 링크와 스타트 (0) | 2023.01.16 |
---|---|
[python] 백준 14501 퇴사 (0) | 2023.01.15 |
[python] 백준 10971 외판원 순회2 (0) | 2023.01.11 |
[python] 백준 10819 차이를 최대로 (0) | 2023.01.10 |
[python] 백준 10974 모든 순열 (0) | 2023.01.09 |
댓글