일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 1182
- Android
- lcm
- 나머지
- 홈화면
- 코틀린
- Combination
- permutation
- 1260
- 9095
- 파이썬
- 6603
- 순열
- 최소공배수
- 11기
- 괄호
- 코테
- 안드로이드
- 11054
- Kotlin
- 매일11시
- Python
- itertools
- 뒤로가기
- 백준
- 11053
- LCS
- 앱
- expo
- 11057
Archives
- Today
- Total
목록15656 (1)
황소개발자
백준 15656 파이썬 python : N과 M (7) @@황소처럼 우직하게@@
n, m = map(int, input().split()) num_list = list(map(int, input().split())) num_list.sort() a = [0 for i in range(m)] c = [False for i in range(n)] def go(idx, n, m): if idx == m: print(' '.join(map(str, a))) return for i in range(n): a[idx] = num_list[i] go(idx + 1, n, m) # a[selected] = num_list[idx] # go(idx, selected + 1, n, m) # a[selected] = 0 # go(idx + 1, selected, n, m) go(0, n, m)
백준 문제 풀이
2020. 3. 2. 01:17