2446.A Trivial Problem

Time Limit: 1s Memory Limit: 256MB

Mr. Santa asks all the great programmers of the world to solve a trivial problem. He gives them an integer m and asks for the number of positive integers n, such that the factorial of n ends with exactly m zeroes. Are you among those great programmers who can solve this problem?

Input Format(From the terminal/stdin)

The only line of input contains an integer m (1 \le m \le 100000)- the required number of trailing zeroes in factorial.

Output Format(To the terminal/stdout)

First print k- the number of values of n such that the factorial of n ends with m zeroes. Then print these k integers in increasing order.

Sample Input 1

Copy
1
 \n

Sample Output 1

Copy
5
5 6 7 8 9 
 \n
 · · · · \n

Sample Input 2

Copy
5
 \n

Sample Output 2

Copy

\n

Hints

The factorial of n is equal to the product of all integers from 1 to n inclusive, that is n!=1 \cdot 2 \cdot 3 \cdot ... \cdot n.

In the first sample, 5!=120, 6!=720, 7!=5040, 8!=40320 and 9!=362880.

Submit

请先 登录

© 2025 FAQs