#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 CC kroner, and she also wants to buy at most one of each type.

There are many ways to buy candy for at least CC 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 1,000,000,0071,000,000,007, so you instead calculate the number of possibilities modulo 6553765537, a less intimidating number.

Input

The first line of the input consists of a single integer TT, the number of test cases. Each test case begins with a line containing two integers NN and CC, the number of available candy types and the least amount of money Anne wants to spend. The next line contains NN space-separated integers aia_i, the cost of candy type ii in kroner.

Output

For each test case, output on its own line the number of ways Anne can buy candy for at least CC kroner, modulo 6553765537.

Samples

2
5 10
5 6 7 8 9
10 100
10 10 10 10 10 10 10 10 11 9
26
1

Note

0<T1000 < T \leq 100

0<N2000 < N \leq 200

0<C100000 < C \leq 10000

0<ai2000 < a_i \leq 200

Resources

IDI Open Programming Contest April 21st, 2012 - NTNU