728x90
320x100
구현
from itertools import combinations
while True:
I = list(map(int, input().split()))
k = I[0]
arr = I[1:]
if k == 0:
break
for comb in combinations(arr, 6):
for u in comb:
print(u, end=' ')
print()
print()
- Cmbinations 함수를 활용하면 모든 경우의 수를 뽑을 수 있음
728x90
320x100
'💻 하나씩 차곡차곡 > 백준알고리즘 (Python,Java)' 카테고리의 다른 글
백준 10974번 파이썬 (0) | 2024.10.11 |
---|---|
백준 1759번 파이썬 (0) | 2024.10.10 |
백준 4779번 파이썬 (0) | 2024.10.08 |
백준 10870번 파이썬 (0) | 2024.10.07 |
백준 10951번 A+B - 4 (+ hasNextInt()) (JAVA/자바) (0) | 2021.11.04 |