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
- AI
- 딥러닝
- DFS
- 리눅스
- 알고리즘
- 백준
- linux
- 코딩 테스트
- 파이썬
- 그래프
- BFS
- 코딩테스트
- CSS
- 프로그래머스
- 구글 킥스타트
- PYTHON
- 순열
- 동적프로그래밍
- 코딩
- kick start
- OS
- 운영체제
- 브루트포스
- 네트워크
- dp
- nlp
- 동적 프로그래밍
- google coding competition
- 킥스타트
- 프로그래밍
Archives
- Today
- Total
오뚝이개발자
[백준15650] N과 M (2) 본문
728x90
300x250
문제
https://www.acmicpc.net/problem/15650
생각의 흐름
간단한 문제이므로 아래의 코드로 설명을 대신하겠다.
코드
from itertools import combinations
N, M = map(int, input().split())
arr = list(range(1,N+1))
for case in combinations(arr, M):
print(' '.join(map(str, case)))
728x90
300x250
'코딩 테스트 > 백준' 카테고리의 다른 글
[백준15652] N과 M (4) (0) | 2020.03.14 |
---|---|
[백준15651] N과 M (3) (0) | 2020.03.14 |
[백준15649] N과 M (1) (0) | 2020.03.12 |
[백준11723] 집합 (0) | 2020.03.10 |
[백준15658] 연산자 끼워넣기 (2) (0) | 2020.03.10 |
Comments