There are NN children in kindergarten. Miss Li bought them NN candies. To make the process more interesting, Miss Li comes up with the rule: All the children line up according to their student number (1...N)(1...N), and each time a child is invited, Miss Li randomly gives him some candies (at least one). The process goes on until there is no candy. Miss Li wants to know how many possible different distribution results are there.
Input
The first line contains an integer TT, the number of test case.
The next TT lines, each contains an integer NN.
1 le T le 1001≤T≤100
1 le N le 10^{100000}1≤N≤10100000
Output
For each test case output the number of possible results (mod 1000000007).
样例输入
1 4
样例输出
8
题目来源
题解:费马小定理:a^n%p=a^(n%(p-1))%p;只要求n%(p-1)然后,快速幂求a^()即可:
参考代码为:
1 #include<stdio.h> 2 #define MOD 1000000007 3 char st[100001]; 4 int T; 5 long long sum; 6 int main() 7 { 8 scanf("%d",&T); 9 while(T--) 10 { 11 scanf("%s",st); 12 int i=0,j; 13 sum=0; 14 while(st[i]!='