def jumpingOnClouds(c, k):
    e = 100    # 에너지
    n = len(c)
    s = 0      # 시작은 0부터
    while True:
        s = (s + k) % n    # jump
        e -= (c[s] * 2) + 1 # thundercloud면 2가 추가로 감소
        
        # 시작점(0)으로 다시 되돌아가면 게임이 끝남
        if not s:
            break
        
    return e