2021-06-15 00:49:18 -07:00
---
id: 5900f4661000cf542c50ff78
2022-03-01 00:52:39 +05:30
title: 'Problema 250: 250250'
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 301898
dashedName: problem-250-250250
---
# --description--
2022-03-01 00:52:39 +05:30
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.
2021-06-15 00:49:18 -07:00
# --hints--
2022-03-01 00:52:39 +05:30
`twoHundredFifty()` dovrebbe restituire `1425480602091519` .
2021-06-15 00:49:18 -07:00
```js
2022-03-01 00:52:39 +05:30
assert.strictEqual(twoHundredFifty(), 1425480602091519);
2021-06-15 00:49:18 -07:00
```
# --seed--
## --seed-contents--
```js
2022-03-01 00:52:39 +05:30
function twoHundredFifty() {
2021-06-15 00:49:18 -07:00
return true;
}
2022-03-01 00:52:39 +05:30
twoHundredFifty();
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
// solution required
```