Time limit: 0.05sMemory limit: 16MBInput: stdinOutput: stdout
"To give the bear a high five"
Andrei solved the problem excursion and then thought of going on an excursion in the forest. When he returned, there was a bear at the exit of the forest. The bear asked him T questions in the form: "I give you a natural number N. Tell me the value of CN0ββ (N+0)+CN1ββ (N+1)+CN2ββ (N+2)+β―+CNNββ (N+N)." Here, CNKβ denotes the combinations of N taken K at a time. Andrei doesn't know how to solve the problem, so he asks you to solve it.
Task
For each number N given by the bear, you need to compute the value of CN0ββ (N+0)+CN1ββ (N+1)+CN2ββ (N+2)+β―+CNNββ (N+N), more formally βi=0NβCNiββ (N+i). Since these numbers can be very large, you need to display them modulo 998244353.
Input data
The first line contains the number T. Then, for i from 1 to T, the (i+1)-th line contains a number N, representing the number given by the bear for the i-th question.
Output data
The output contains T lines, each line i containing a single number representing the answer to the bear's i-th question, modulo 998244353.
Constraints and clarifications
1β€Tβ€10
1β€Nβ€1018
#
Score
Constraints
0
0
Example
1
5
Nβ€100
2
12
Nβ€2β 103
3
16
Nβ€2β 106
4
22
Nβ€107
5
45
No additional constraints
Example
stdin
4
2
6
2344
5459875
stdout
12
576
47421958
201586235
Explanation
For the first test, C20ββ (2+0)+C21ββ (2+1)+C22ββ (2+2)=1β 2+2β 3+1β 4=2+6+4=12, and 12 mod 998244353=12, so the answer is 12.
For the second test, C60ββ (6+0)+C61ββ (6+1)+C62ββ (6+2)+C63ββ (6+3)+C64ββ (6+4)+C65ββ (6+5)+C66ββ (6+6)=1β 6+6β 7+15β 8+20β 9+15β 10+6β 11+1β 12=6+42+120+180+150+66+12=576, and 576 mod 998244353=576, so the answer is 576.