1.4 KiB
1.4 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4711000cf542c50ff84 | 5 | Problem 261: Pivotal Square Sums | 301910 | Задача 261: суммарные квадратные суммы |
Description
(км) 2 + ... + k2 = (n + 1) 2 + ... + (n + m) 2.
Некоторые небольшие квадратные точки: 4: 32 + 42 = 52 21: 202 + 212 = 292 24: 212 + 222 + 232 + 242 = 252 + 262 + 272 110: 1082 + 1092 + 1102 = 1332 + 1342Найти сумму всех четкие квадратные точки ≤ 1010.
Instructions
Tests
tests:
- text: <code>euler261()</code> should return 238890850232021.
testString: assert.strictEqual(euler261(), 238890850232021);
Challenge Seed
function euler261() {
// Good luck!
return true;
}
euler261();
Solution
// solution required