2021-06-15 00:49:18 -07:00
---
id: 5900f3e41000cf542c50fef7
2022-02-28 13:29:21 +05:30
title: 'Problema 120: Resti di quadrati'
2021-06-15 00:49:18 -07:00
challengeType: 5
forumTopicId: 301747
dashedName: problem-120-square-remainders
---
# --description--
2022-02-28 13:29:21 +05:30
Sia `r` il resto quando ${(a − 1)}^n + {(a + 1)}^n$ viene diviso per $a^2$.
2021-06-15 00:49:18 -07:00
2022-02-28 13:29:21 +05:30
Per esempio, se $a = 7$ e $n = 3$, allora $r = 42: 6^3 + 8^3 = 728 ≡ 42 \\ \text{mod}\\ 49$. E se `n` varia, allora anche `r` varia, ma per $a = 7$ risulta che $r_{max} = 42$.
2021-06-15 00:49:18 -07:00
2022-02-28 13:29:21 +05:30
Per $3 ≤ a ≤ 1000$, trova $\sum{r}_{max}$.
2021-06-15 00:49:18 -07:00
# --hints--
2022-02-28 13:29:21 +05:30
`squareRemainders()` dovrebbe restituire `333082500` .
2021-06-15 00:49:18 -07:00
```js
2021-07-09 21:23:54 -07:00
assert.strictEqual(squareRemainders(), 333082500);
2021-06-15 00:49:18 -07:00
```
# --seed--
## --seed-contents--
```js
2021-07-09 21:23:54 -07:00
function squareRemainders() {
2021-06-15 00:49:18 -07:00
return true;
}
2021-07-09 21:23:54 -07:00
squareRemainders();
2021-06-15 00:49:18 -07:00
```
# --solutions--
```js
// solution required
```