2021-01-28
문제 : https://www.acmicpc.net/problem/10974
이거는 풀었다고 하기도 민망하다
앞 문제에 시간을 너무 많이 써서 간단한거 풀었음
n이 최대 8까지여서 permutations 사용해도 충분히 시간안에 가능함
[소스코드]
from itertools import combinations, permutations
n = int(input())
m = []
for i in range(n):
m.append(i+1)
per = permutations(m, n)
for p in per:
print(*p)
'PS > 백준' 카테고리의 다른 글
[백준/Python(파이썬)] 13023 ABCDE (0) | 2021.02.14 |
---|---|
[백준/Python(파이썬)] 1987 알파벳 (0) | 2021.02.14 |
[백준/Python(파이썬)] 2309 일곱 난쟁이 (0) | 2021.02.14 |
[백준/Python(파이썬)] 1759 암호 만들기 (0) | 2021.02.14 |
[백준/Python(파이썬)] 10972 다음 순열 (0) | 2021.02.14 |