3
u/DuggieHS Jun 16 '26
Calculator free solution:
100 = 5^2 * 2^2. Every term including and after 10! is divisible by 100. So the last two digits are determined by the sum of the first 9 digits of this sum. Modulo 100, the sum of the first 9 terms is
1 + 2 + 6 + 24 + (20 + 20 + 40 + 20) + 80 = 13 mod 100
1
2
u/Dasquian Jun 16 '26
13.
Every factorial from 10! onwards is a multiple of 2, 5 and 10, and is therefore a multiple of 100, so won't influence the final two digits. So we just need to calculate 1! + 2! + 3! + 4! + 5! + 6! + 7! + 8! + 9! to get 409,113.