Find the maximum number of zeros at the end of $376!$.
To do this, I divided $376$ by powers of $5$ and then "took" their floor function and then added them up:
$$\lfloor \frac{376}{5} \rfloor + \lfloor \frac{376}{25} \rfloor + \lfloor \frac{376}{125} \rfloor = 75 + 15 + 3 = 93$$
Now $93$ was the right answer, but apparently I had to look at powers of $2$ as well but ignore them for some reason. Why do I have to do this?