freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-250-250250.md

693 B

id title challengeType forumTopicId dashedName
5900f4661000cf542c50ff78 問題 250: 250250 5 301898 problem-250-250250

--description--

\\{11, 22, 33, \ldots, {250250}^{250250}\\} の部分集合のうち、空ではなく、要素の和が 250 で割り切れるものはいくつありますか。 回答として下位 16 桁を入力すること。

--hints--

twoHundredFifty()1425480602091519 を返す必要があります。

assert.strictEqual(twoHundredFifty(), 1425480602091519);

--seed--

--seed-contents--

function twoHundredFifty() {

  return true;
}

twoHundredFifty();

--solutions--

// solution required