Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 자료구조
- OS
- 협업
- react
- codeup
- 코드업
- C++
- error
- 백준
- 분할메모리할당
- 타입스크립트
- 공부
- 스프링
- 정렬
- Spring
- 리덕스장바구니
- 프로그래머스
- memory
- CPU 스케줄링
- Operating System
- 일상
- Redux
- 알고리즘
- web
- 토이프로젝트
- 기초100제
- js to ts
- 파이썬
- Java
- react-redux
Archives
- Today
- Total
목록15652 (1)
감자튀김 공장🍟
[백준/15652] N과 M (4) (with 파이썬)
✔ 문제 ✔ 풀이 👾 내 풀이 (216ms) import sys input = sys.stdin.readline n, m = map(int, input().split()) res = [] def dfs(x): if len(res) == m: print(' '.join(map(str, res))) return for i in range(x, n+1): if i >= x: res.append(i) dfs(i) res.pop() dfs(1) ⭐ 다른 풀이 (176ms) import sys input = sys.stdin.readline n, m = map(int, input().split()) s = [] def dfs(x): if len(s) == m: print(*s) return for i in rang..
Algorithm/BOJ
2022. 12. 30. 20:45