#Lutece0319. Subsequence's Sum

Subsequence's Sum

Migrated from Lutece 319 Subsequence's Sum

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

Given a sequence, you should calculate there are how many subsequence that sum of every number of the subsequence is less than a given number KK.

Input

First a number TT (T20T\leq 20) indicates the test cases. Then TT test cases followed.

Every case are six integers NN, AA, BB, CC, MM, KK, where NN is the size of the sequence, and KK is mentioned above.

AA, BB, CC is described the sequence. If the sequence is S1,S2,SNS_1, S_2, \cdots S_N, then S1=AS_1 = A, S2=BS_2 = B, Si=((Si1)×(Si2)+C)modMS_i = ((S_{i-1}) \times (S_{i-2}) + C)\mod M, 3iN3\leq i\leq N.

1N1061\leq N\leq 10^6, 0A,B,C<M1090\leq A, B, C < M\leq 10^9, 0K1090\leq K\leq 10^9.

Output

For each test case, output one line. First ,output Case #C: , where CC is the number of test case, from 11 to TT. Then, output the answer.

Samples

1
5 4 7 0 11 19
Case #1: 9

Note

The sequence is 4 7 6 9 10, so there are 99 subsequence's sum less than 1919.

The subsequence should be continuous and contain at least one number.

Resources

standy