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
- OS
- google coding competition
- 파이썬
- 코딩
- 구글 킥스타트
- 동적 프로그래밍
- AI
- 리눅스
- 딥러닝
- kick start
- 동적프로그래밍
- 백준
- 프로그래머스
- 코딩 테스트
- 네트워크
- 그래프
- linux
- 알고리즘
- 브루트포스
- nlp
- 킥스타트
- dp
- 코딩테스트
- 순열
- CSS
- PYTHON
- DFS
- 프로그래밍
- 운영체제
- BFS
Archives
- Today
- Total
오뚝이개발자
[백준15664] N과 M (10) 본문
728x90
300x250
문제
https://www.acmicpc.net/problem/15664
생각의 흐름
N과 M (9)와 유사하지만 조합을 구한다는 점이 다르다.
코드
from itertools import combinations
N,M = map(int, input().split())
arr = list(map(int, input().split()))
arr.sort()
result = []
result = set(result)
for case in combinations(arr, M):
if case not in result:
result.add(case)
print(' '.join(map(str, case)))
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준15666] N과 M (12) (0) | 2020.03.14 |
---|---|
[백준15665] N과 M (11) (0) | 2020.03.14 |
[백준15663] N과 M (9) (0) | 2020.03.14 |
[백준15657] N과 M (8) (0) | 2020.03.14 |
[백준15656] N과 M (7) (0) | 2020.03.14 |
Comments