Panda has received an assignment of painting a line of blocks. Since Panda is such an intelligent boy, he starts to think of a math problem of painting. Suppose there are N blocks in a line and each block can be paint red, blue, green or yellow. For some myterious reasons, Panda want both the number of red blocks and green blocks to be even numbers. Under such conditions, Panda wants to know the number of different ways to paint these blocks.
The first line of the
input contains an integer T(1≤T≤100),
the number of test cases. Each of the next T lines
contains an integer N(1≤N≤10^9)
indicating the number of blocks.
For
each test cases, output the number of ways to paint the blocks in a single line. Since the answer may be quite large, you have to module it by 10007.
组合数推一推
#include<iostream>
#include<cstdio>
#define LL long long
using namespace std;
const LL mod=10007;
LL mi(LL x,LL y){
if(y==0) return 1;
LL tmp=mi(x,y/2)%mod;
tmp=tmp*tmp%mod;
if(y&1) return tmp*x%mod;
return tmp;
}
int main(){
int t;
LL n;
scanf("%d",&t);
while(t--){
scanf("%lld",&n);
cout<<(mi(4,n-1)+mi(2,n-1))%mod<<endl;
}
return 0;
}