728x90
https://www.acmicpc.net/problem/6603
쉬어가는 경우의 수 문제~
조합 모듈 combinations를 이용하면 간단하게 풀 수 있다.
from itertools import combinations
while True:
data = list(map(int, input().split()))
if len(data) == 1:
break
array = list(combinations(data[1:], 6))
array.sort()
for case in array:
print(*case)
print()
728x90
'Algorithm (PS)' 카테고리의 다른 글
[정보처리기사/실기] 2장 데이터 입출력 구현 (0) | 2022.10.11 |
---|---|
[백준] 2513 회전초밥 Python (0) | 2022.10.10 |
[백준] 11055 가장 큰 증가 부분 수열 Python (0) | 2022.10.07 |
[백준] 15649 N과 M(1) Python (0) | 2022.10.06 |
[백준] 5212 지구온난화 Python 풀이 (1) | 2022.10.05 |