#Lutece0311. Apple
Apple
Migrated from Lutece 311 Apple
All parts of this problem, including description, images, samples, data and checker, might be broken. If you find bugs in this problem, please contact the admins.
Description
There are some piles of apples in a line from left to right and every pile has a fixed number of apples. If you choose a pile to pick, you have to pick all the apples of this pile. You want to pick a consecution of piles out and then add them together to share them with your friends. But your friends are very petty. For every one of your friends, he won't be happy if you give more apples of another friends than him. How many ways do you have to pick piles to make all of them stay happy? (And you can't divide any single apple into two or more pieces, of course.)
Input
The first line contains an integer () indicating the number of test cases. The first line of each test case contains two integers () and () indicating the number of piles and the number of your friends. The following line contains positive integers indicate the number of apples in each pile from left to right. The number of apples in each pile is no more than .
Output
For each test case, just output one line.
First output Case #C:
,where is number of test case which is from to .Then,output the the number of ways you can pick piles.
Samples
2
3 4
1 3 4
4 9
2 4 6 8
Case #1: 3
Case #2: 1
Note
The answer will be very large, but it will be fit in 64-bit integer. So, please use long long
.
Resources
lcqbest