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