Fuzzy Numbers

3.5

2 votes
Matrix Exponentiation, Easy
Problem

The fuzzy number is given by the function F(n) and,

F(n) = 2F(n-1) + 3F(n-2) + n*7n where F(0) = 1 and F(1) = 1.

Given n, you are to find F(n).

Since the number can be big enough, print the answer modulo 1e9+7.

 

Constraints:

1<=T<=1e4

1<=n<=1e18

 

Input Format:

The first line contains the number of test cases, T.

T lines follow each containing a number n.

 

Output Format:

Display the required result for each test case in a new line.

Sample Input
3
1
2
3
Sample Output
Case 1: 1
Case 2: 103
Case 3: 1238
Time Limit: 1
Memory Limit: 256
Source Limit:
Editor Image

?