300x250
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 킥스타트
- 프로그래밍
- 운영체제
- BFS
- PYTHON
- 리눅스
- CSS
- 코딩 테스트
- 프로그래머스
- dp
- OS
- 백준
- 구글 킥스타트
- linux
- 파이썬
- 동적 프로그래밍
- 동적프로그래밍
- google coding competition
- DFS
- 코딩테스트
- 알고리즘
- 브루트포스
- 네트워크
- 그래프
- 순열
- 코딩
- 딥러닝
- nlp
- AI
- kick start
Archives
- Today
- Total
오뚝이개발자
[백준6603] 로또 본문
728x90
300x250
문제
https://www.acmicpc.net/problem/6603
생각의 흐름
- 주어진 수열에서 6개의 수를 고르는 것이므로 "조합"임을 파악
- itertools의 combinations 메소드를 이용해 6개로 이루어진 조합을 구한다.
깨달은 점
- itertools의 combinations 사용법 : combinations(list, pick할 갯수)
- ' '.join(열거형 변수) : ' '.join(map(str, case))
코드
from itertools import combinations
flag = True
while flag:
line = list(map(int, input().split()))
n = int(line[0])
if n == 0:
flag = False
break
for case in combinations(line[1:], 6):
print(' '.join(map(str,case)))
print('')
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준1759] 암호 만들기 (0) | 2020.03.09 |
---|---|
[백준14888] 연산자 끼워넣기 (0) | 2020.03.09 |
[백준10971] 외판원 순회 2 (0) | 2020.03.09 |
[백준10819] 차이를 최대로 (0) | 2020.03.09 |
[백준10974] 모든 순열 (0) | 2020.03.08 |
Comments