2015.PolandBall and Many Other Balls

Time Limit: 1s Memory Limit: 256MB

PolandBall is standing in a row with Many Other Balls. More precisely, there are exactly n Balls. Balls are proud of their home land- and they want to prove that it's strong.

The Balls decided to start with selecting exactly m groups of Balls, each consisting either of single Ball or two neighboring Balls. Each Ball can join no more than one group.

The Balls really want to impress their Enemies. They kindly asked you to calculate number of such divisions for all m where 1 \le m \le k. Output all these values modulo 998244353, the Enemies will be impressed anyway.

Input Format(From the terminal/stdin)

There are exactly two numbers n and k (1 \le n \le 109, 1 \le k \lt 215), denoting the number of Balls and the maximim number of groups, respectively.

Output Format(To the terminal/stdout)

You should output a sequence of k values. The i-th of them should represent the sought number of divisions into exactly i groups, according to PolandBall's rules.

Sample Input 1

Copy
3 3
 · \n

Sample Output 1

Copy
5 5 1 
 · · \n

Sample Input 2

Copy
1 1
 · \n

Sample Output 2

Copy
1 
 \n

Sample Input 3

Copy
5 10
 ·  \n

Sample Output 3

Copy
9 25 25 9 1 0 0 0 0 0 
 ·  ·  · · · · · · · \n

Hints

In the first sample case we can divide Balls into groups as follows:

{1}, {2}, {3}, {12}, {23}.

{12}{3}, {1}{23}, {1}{2}, {1}{3}, {2}{3}.

{1}{2}{3}.

Therefore, output is: 5 5 1.

Submit

请先 登录

© 2025 FAQs