680 B
680 B
id, title, challengeType, forumTopicId, dashedName
id | title | challengeType | forumTopicId | dashedName |
---|---|---|---|---|
5900f48f1000cf542c50ffa1 | Завдання 290: Цифровий підпис | 5 | 301942 | problem-290-digital-signature |
--description--
Скільки цілих чисел 0 ≤ n < {10}^{18}
мають властивість, що сума цифр n
дорівнює сумі цифр 137n
?
--hints--
digitalSignature()
має повернути 20444710234716470
.
assert.strictEqual(digitalSignature(), 20444710234716470);
--seed--
--seed-contents--
function digitalSignature() {
return true;
}
digitalSignature();
--solutions--
// solution required