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