수들의 조합
생성일: 2022년 2월 7일 오후 5:02
구현 코드
# 수들의 조합
import sys
#sys.stdin = open("input.txt" ,"rt")
def DFS(L, prev, sum):
global cnt
if L == k:
if sum % m == 0:
cnt += 1
else:
for i in range(prev, n):
DFS(L+1, i+1, sum+a[i])
if __name__ == "__main__":
n, k = map(int, input().split())
a = list(map(int, input().split()))
m = int(input())
cnt = 0
DFS(0, 0, 0)
print(cnt)
Author And Source
이 문제에 관하여(수들의 조합), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@lsj8706/수들의-조합저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)