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