Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 이진탐색
- 바텀업
- 오픽
- 디피
- 영어말하기
- 주석
- 영어회화
- stack 스택
- 다이나믹프로그래밍
- dynamicProgramming
- 탑다운
- 안드로이드주석
- 오픽공부법
- 오픽노잼공부방법
- 이진탐색 #나무 자르기
- opic
- 오픽노잼
- XML주석
- 오픽점수잘받는방법
- topdown
- 안드로이드
- ㅂ
- English
- fibo
- XML
- 오픽가격
- dp
- 메모이제이션
- 피보나치수열
Archives
RUBY
[백준] 로또 본문
출처:: https://www.acmicpc.net/problem/6603
분류:: 브루트포스, 순열
1. 문제 이해 및 해결과정
2. 풀이방법
1. 순열
#로또
#https://www.acmicpc.net/problem/6603
import sys
from itertools import combinations
sys.stdin = open("input.txt","r")
input=sys.stdin.readline
while True:
data=list(map(int,input().split()))
if data[0]==0:
break
selected=list(combinations(data[1:],6))
for i in range(len(selected)):
print(' '.join(map(str,selected[i])))
print()
3. 오답원인
4. 알게된 점
'PS > BOJ' 카테고리의 다른 글
[백준] 동물원 (0) | 2020.10.03 |
---|---|
[백준] 숨박꼭질6 (0) | 2020.10.03 |
[백준] 모든 수열 (0) | 2020.10.02 |
[백준] 합분해 (0) | 2020.10.02 |
[백준] 다음 순열 (0) | 2020.10.02 |
Comments