666 B
666 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 の各位の和と等しくなるという性質を持つ整数 n はいくつありますか。
--hints--
digitalSignature() は 20444710234716470 を返す必要があります。
assert.strictEqual(digitalSignature(), 20444710234716470);
--seed--
--seed-contents--
function digitalSignature() {
return true;
}
digitalSignature();
--solutions--
// solution required