freeCodeCamp/curriculum/challenges/chinese/10-coding-interview-prep/project-euler/problem-229-four-representa...

1.2 KiB
Raw Blame History

id challengeType videoUrl title
5900f4521000cf542c50ff64 5 问题229使用正方形的四个表示

Description

考虑数字3600.这是非常特别的,因为

3600 = 482 + 362 3600 = 202 + 2×402 3600 = 302 + 3×302 3600 = 452 + 7×152

类似地我们发现88201 = 992 + 2802 = 2872 + 2×542 = 2832 + 3×522 = 1972 + 7×842。

在1747年欧拉证明哪些数字可以表示为两个正方形的总和。我们感兴趣的是数字n它承认以下四种类型的表示

n = a12 + b12n = a22 + 2 b22n = a32 + 3 b32n = a72 + 7 b72

其中ak和bk是正整数。

有75373这样的数字不超过107。

有多少这样的数字不超过2×109

Instructions

Tests

tests:
  - text: <code>euler229()</code>应该返回11325263。
    testString: assert.strictEqual(euler229(), 11325263);

Challenge Seed

function euler229() {
  // Good luck!
  return true;
}

euler229();

Solution

// solution required

/section>