#Lutece1217. The Battle of Chibi

The Battle of Chibi

Migrated from Lutece 1217 The Battle of Chibi

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

Cao Cao made up a big army and was going to invade the whole South China. Yu Zhou was worried about it. He thought the only way to beat Cao Cao is to have a spy in Cao Cao's army. But all generals and soldiers of Cao Cao were loyal, it's impossible to convince any of them to betray Cao Cao.

So there is only one way left for Yu Zhou, send someone to fake surrender Cao Cao. Gai Huang was selected for this important mission. However, Cao Cao was not easy to believe others, so Gai Huang must leak some important information to Cao Cao before surrendering.

Yu Zhou discussed with Gai Huang and worked out NN information to be leaked, in happening order. Each of the information was estimated to has aia_i value in Cao Cao's opinion.

Actually, if you leak information with strict increasing value could accelerate making Cao Cao believe you. So Gai Huang decided to leak exact MM information with strict increasing value in happening order. In other words, Gai Huang will not change the order of the NN information and just select MM of them. Find out how many ways Gai Huang could do this.

Input

The first line of the input gives the number of test cases, TT(11001\leq 100). TT test cases follow.

Each test case begins with two numbers NN(1N1031\leq N\leq 10^3) and MM(1MN1\leq M\leq N), indicating the number of information and number of information Gai Huang will select. Then NN numbers in a line, the ithi_{th} number aia_i(1ai1091\leq a_i\leq 10^9) indicates the value in Cao Cao's opinion of the ithi_{th} information in happening order.

Output

For each test case, output one line containing Case #x: y, where xx is the test case number (starting from 11) and yy is the ways Gai Huang can select the information.

The result is too large, and you need to output the result mod by 10000000071000000007(109+710^9+7).

Samples

2
3 2
1 2 3
3 2
3 2 1
Case #1: 3
Case #2: 0

Note

In the first cases, Gai Huang need to leak 22 information out of 33. He could leak any 22 information as all the information value are in increasing order. In the second cases, Gai Huang has no choice as selecting any 22 information is not in increasing order.

Resources

The 2015 China Collegiate Programming Contest