#Lutece0749. Candy Store
Candy Store
Migrated from Lutece 749 Candy Store
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
Little Anne loves candy and she wants to buy candy at the local candy store. Fortunately, she also happens to be extremely rich, which enables her to buy all the candy she could ever want. She wants to buy candy for at least kroner, and she also wants to buy at most one of each type.
There are many ways to buy candy for at least kroner,so she wants to consider the possibilities before buying.Since her parents think she is too young to use a computer,she has asked you to write a program that calculates the number of possibilities.
Anne doesn't like large numbers like , so you instead calculate the number of possibilities modulo , a less intimidating number.
Input
The first line of the input consists of a single integer , the number of test cases. Each test case begins with a line containing two integers and , the number of available candy types and the least amount of money Anne wants to spend. The next line contains space-separated integers , the cost of candy type in kroner.
Output
For each test case, output on its own line the number of ways Anne can buy candy for at least kroner, modulo .
Samples
2
5 10
5 6 7 8 9
10 100
10 10 10 10 10 10 10 10 11 9
26
1
Note
Resources
IDI Open Programming Contest April 21st, 2012 - NTNU