Files

39 lines
666 B
Markdown
Raw Permalink Normal View History

---
id: 5900f4661000cf542c50ff78
title: 'Problema 250: 250250'
challengeType: 5
forumTopicId: 301898
dashedName: 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`.
```js
assert.strictEqual(twoHundredFifty(), 1425480602091519);
```
# --seed--
## --seed-contents--
```js
function twoHundredFifty() {
return true;
}
twoHundredFifty();
```
# --solutions--
```js
// solution required
```