728x90
https://www.acmicpc.net/problem/6603
💡 문제 풀이
백트래킹 문제이다.
라이브러리를 사용해서 풀었다.
✔️ 느낀 점
계속 틀렸다고 나오길래 뭐가 문제인가 했더니 print("")을 해서 틀렸었다.
💻 코드
from itertools import combinations
import sys
input = sys.stdin.readline
while True:
tmp = list(input().split())
if tmp[0] == '0': break
for c in combinations(tmp[1:], 6):
print(' '.join(c))
print()
'문제 풀이 > 백준(BOJ)' 카테고리의 다른 글
[Python] 백준 14502번 : 연구소 (0) | 2023.02.22 |
---|---|
[Python] 백준 10986번 : 나머지 합 (0) | 2023.02.14 |
[Python] 백준 1446번 : 지름길 (0) | 2023.01.31 |
[Python] 백준 9944번 : NxM 보드 완주하기 (0) | 2022.09.18 |
[Python] 백준 14572번 : 스터디 그룹 (0) | 2022.09.07 |
댓글