Files
2022-02-28 20:22:39 +01:00

666 B

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4661000cf542c50ff78 Problema 250: 250250 5 301898 problem-250-250250

--description--

Trova il numero di sottoinsiemi non vuoti di \\{{1}^{1}, {2}^{2}, {3}^{3}, \ldots, {250250}^{250250}\\}, la somma dei cui elementi è divisibile per 250. Inserisci le 16 cifre più a destra come risposta.

--hints--

twoHundredFifty() dovrebbe restituire 1425480602091519.

assert.strictEqual(twoHundredFifty(), 1425480602091519);

--seed--

--seed-contents--

function twoHundredFifty() {

  return true;
}

twoHundredFifty();

--solutions--

// solution required