# 172. Factorial Trailing Zeroes

Given an integer n, return the number of trailing zeroes in n!.

**Example 1:**

```
Input: 3
Output: 0
Explanation: 3! = 6, no trailing zero.
```

**Example 2:**

```
Input: 5
Output: 1
Explanation: 5! = 120, one trailing zero.
```

**Note:** Your solution should be in logarithmic time complexity.

{% hint style="info" %}
10 = 2 x 5，而2的倍數數量遠多於5倍數的數量，所以這題要找的就是5倍數的數量，但除了5，25、125等等5的次方也要考慮進來。
{% endhint %}

```cpp
int trailingZeroes(int n) { // time: O(logn); space: O(1)
    int res = 0;
    while (n) {
        res += (n / 5);
        n /= 5;
    }
    return res;
}
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://jimmylin1991.gitbook.io/practice-of-algorithm-problems/math/172.-factorial-trailing-zeroes.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
