일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 6603
- 9095
- Android
- 순열
- 홈화면
- expo
- itertools
- Python
- permutation
- 안드로이드
- 1260
- 매일11시
- 11053
- LCS
- 파이썬
- 코틀린
- 11기
- Kotlin
- 코테
- 11057
- 괄호
- 앱
- Combination
- 백준
- 11054
- 뒤로가기
- 나머지
- lcm
- 최소공배수
- 1182
Archives
- Today
- Total
목록부분수열 (1)
황소개발자
백준 1182 파이썬 python : 부분수열의 합 @@황소처럼 우직하게@@
import sys input = sys.stdin.readline n, s = map(int, input().split()) num_list = list(map(int, input().split())) ans = 0 def subSet(idx, total): global ans if idx >= n: return total += num_list[idx] if total == s: ans += 1 subSet(idx + 1, total - num_list[idx]) subSet(idx + 1, total) subSet(0, 0) print(ans) jaimemin 님의 c++ 풀이를 참고하였다. 재귀로 풀었다. Solution 각 원소는 그 원소가 포함되었는지 안되었는지로 나뉘어진다. 길이가 0인 것이 ..
백준 문제 풀이
2020. 2. 26. 17:56