일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 앱
- 뒤로가기
- 코틀린
- LCS
- lcm
- 코테
- Android
- 11기
- 11053
- 1260
- 6603
- 9095
- Combination
- 안드로이드
- 백준
- 홈화면
- 1182
- Kotlin
- 괄호
- 11057
- expo
- 파이썬
- 최소공배수
- permutation
- 나머지
- 순열
- itertools
- Python
- 11054
- 매일11시
Archives
- Today
- Total
황소개발자
백준 1182 파이썬 python : 부분수열의 합 @@황소처럼 우직하게@@ 본문
반응형
import sys
input = sys.stdin.readline
n, s = map(int, input().split())
lst = list(map(int, input().split()))
ans = 0
def sub_sum(idx, total):
global ans, s
if idx == n:
if total == s:
ans += 1
return
sub_sum(idx + 1, total)
sub_sum(idx + 1, total + lst[idx])
sub_sum(0, 0)
ans -= 1 if s == 0 else 0
print(ans)
반응형
'백준 문제 풀이' 카테고리의 다른 글
백준 11723 파이썬 python : 집합 @@황소처럼 우직하게@@ (0) | 2020.02.28 |
---|---|
백준 14501 파이썬 python : 퇴사 @@황소처럼 우직하게@@ 재귀로 간단구현 (10) | 2020.02.28 |
백준 1759 파이썬 python : 암호 만들기 @@황소처럼 우직하게@@ 코로나 조심하세요 (0) | 2020.02.28 |
백준 6603 파이썬 python : 로또 - combination 직접구현 (0) | 2020.02.28 |
백준 10971 파이썬 python : 외판원 순회 2 @@황소처럼 우직하게@@ 아주나이쑤 (0) | 2020.02.28 |
Comments