https://www.acmicpc.net/problem/15651
풀이
from itertools import product
a,b = map(int,input().split())
for i in product([i+1 for i in range(a)],repeat=b):
print(*i)
수를 반복해서 구해야하니 repeat를 사용해주었다.
'코딩테스트 > Python' 카테고리의 다른 글
[Python] 백준 #5086 - 배수와 약수 (0) | 2021.12.01 |
---|---|
[Python] 백준 #15652 - N과 M (4) (0) | 2021.12.01 |
[Python] 백준 #15650 - N과 M (2) (0) | 2021.12.01 |
[Python] 백준 #10799 - 쇠막대기 (0) | 2021.12.01 |
[Python] 백준 #15649 - N과 M (1) (4) | 2021.11.30 |