본문 바로가기
💻 하나씩 차곡차곡/백준알고리즘 (Python,Java)

백준 10974번 파이썬

by 뚜루리 2024. 10. 11.
728x90
320x100

문제 링크 : https://www.acmicpc.net/problem/10974

 

구현

from itertools import permutations

N = int(input())

for permutation in permutations(range(1, N + 1)):
    print(' '.join(map(str, permutation)))
  • 순열 알고리즘 사용.
728x90
320x100

'💻 하나씩 차곡차곡 > 백준알고리즘 (Python,Java)' 카테고리의 다른 글

백준 23246번 파이썬  (0) 2024.10.15
백준 11650번 파이썬  (0) 2024.10.14
백준 1759번 파이썬  (0) 2024.10.10
백준 6603번 파이썬  (0) 2024.10.09
백준 4779번 파이썬  (0) 2024.10.08