Notice
Recent Posts
Recent Comments
Link
JiSoo's Devlog
[백준 / 파이썬] 1182번 부분수열의 합 본문
from itertools import combinations
n, s = map(int, input().split())
a = list(map(int, input().split()))
c = 0
for i in range(1, n+1):
k = combinations(a, i)
for j in k:
if sum(j) == s:
c += 1
print(c)
combinations 함수로 배열에서 뽑을 수 있는 모든 조합 구해주기
조합의 합이 s와 같으면 +1
728x90
'코테준비' 카테고리의 다른 글
[프로그래머스 / 자바스크립트] Lv0 (0) | 2024.03.03 |
---|---|
[백준 / 파이썬] 25206번 너의 평점은 (0) | 2024.02.13 |
[백준 / 파이썬] 11727번 2xn 타일링2 (0) | 2024.02.07 |
[백준 / 파이썬] 11726번 2xn 타일링 (1) | 2024.02.06 |
[백준 / 파이썬] 1541번 잃어버린 괄호 (0) | 2024.02.06 |