| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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
- 연관관계
- popleft
- appendleft
- 프로그래머스
- 1일1솔
- deque
- 소수판별
- spring
- 백준
- 그리디 알고리즘
- 완전탐색
- Python
- 합 구하기
- DP
- python3
- C#강의
- 인프런
- mvc
- 브루투포스
- Java
- 우선순위큐
- c#
- JPA
- 파이썬
- pypy3
- unity
- 누적합
- 소수찾기
- LCM
- BFS
Archives
- Today
- Total
목록15656 (1)
jae_coding
문제 문제 링크 코드 import sys from itertools import product input = sys.stdin.readline n, m = map(int, input().split()) if n == 1: print(int(input())) else: lst = list(map(int, input().split())) lst.sort() for i in product(lst, repeat=m): print(*i)
알고리즘 문제/백준
2022. 7. 26. 15:44