850 B
850 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f4af1000cf542c50ffc1 | Problema 322: Coefficienti binomiali divisibili per 10 | 5 | 301979 | problem-322-binomial-coefficients-divisible-by-10 |
--description--
Sia T(m, n)
il numero dei coefficienti binomiali {}^iC_n
che sono divisibili per 10 per n ≤ i < m
(i
, m
e n
sono interi positivi).
Ti viene dato che T({10}^9, {10}^7 - 10) = 989\\,697\\,000
.
Trova T({10}^{18}, {10}^{12} - 10)
.
--hints--
binomialCoefficientsDivisibleBy10()
dovrebbe restituire 999998760323314000
.
assert.strictEqual(binomialCoefficientsDivisibleBy10(), 999998760323314000);
--seed--
--seed-contents--
function binomialCoefficientsDivisibleBy10() {
return true;
}
binomialCoefficientsDivisibleBy10();
--solutions--
// solution required