1.6 KiB
1.6 KiB
id, challengeType, title, forumTopicId, localeTitle
id | challengeType | title | forumTopicId | localeTitle |
---|---|---|---|---|
5900f4911000cf542c50ffa3 | 5 | Problem 292: Pythagorean Polygons | 301944 | Задача 292: Пифагорейские полигоны |
Description
Вам дается, что P (4) = 1, P (30) = 3655 и P (60) = 891045. Найдите P (120).
Instructions
Tests
tests:
- text: <code>euler292()</code> should return 3600060866.
testString: assert.strictEqual(euler292(), 3600060866);
Challenge Seed
function euler292() {
// Good luck!
return true;
}
euler292();
Solution
// solution required