[HackerRank] SubArray Division

Jongmin Lee (SAVZAK)·2021년 6월 1일
0

HackerRank

목록 보기
6/39

[문제 링크]

[입력]

int s[n] : the numbers on each of the squares of chocolate
int d : 주인공의 생일
int m : 주인공의 생월

[출력]

초콜릿을 나눌수 있는 경우의 수 , 정수형

[코드]

def birthday(s, d, m):
    # Write your code here
    result = 0
    for i in range(len(s)-m+1):
        total = 0
        for j in range(i,i+m):
            total += s[j]
        print(total)
        if(total == d):
            result +=1
    return result
profile
느리지만 단단하게 걷는 개발자

0개의 댓글