#C. E - Double Factorial

    传统题 1000ms 256MiB

E - Double Factorial

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

E - Double Factorial

Score : $500$ points

Problem Statement

For an integer $n$ not less than $0$, let us define $f(n)$ as follows:

  • $f(n) = 1$ (if $n < 2$)
  • $f(n) = n f(n-2)$ (if $n \geq 2$)

Given is an integer $N$. Find the number of trailing zeros in the decimal notation of $f(N)$.

Constraints

  • $0 \leq N \leq 10^{18}$

Input

Input is given from Standard Input in the following format:

NN

Output

Print the number of trailing zeros in the decimal notation of $f(N)$.


12
1

$f(12) = 12 × 10 × 8 × 6 × 4 × 2 = 46080$, which has one trailing zero.


5
0

$f(5) = 5 × 3 × 1 = 15$, which has no trailing zeros.


1000000000000000000
124999999999999995

2024暑假入门组刷题营第三期(四)

未参加
状态
已结束
规则
IOI
题目
8
开始于
2024-7-11 13:00
结束于
2024-7-11 15:00
持续时间
2 小时
主持人
参赛人数
8