Oliver Eyton-Williams ee1e8abd87
feat(curriculum): restore seed + solution to Chinese (#40683)
* feat(tools): add seed/solution restore script

* chore(curriculum): remove empty sections' markers

* chore(curriculum): add seed + solution to Chinese

* chore: remove old formatter

* fix: update getChallenges

parse translated challenges separately, without reference to the source

* chore(curriculum): add dashedName to English

* chore(curriculum): add dashedName to Chinese

* refactor: remove unused challenge property 'name'

* fix: relax dashedName requirement

* fix: stray tag

Remove stray `pre` tag from challenge file.

Signed-off-by: nhcarrigan <nhcarrigan@gmail.com>

Co-authored-by: nhcarrigan <nhcarrigan@gmail.com>
2021-01-12 19:31:00 -07:00

45 lines
978 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 5900f5001000cf542c510012
title: 问题404交叉椭圆
challengeType: 5
videoUrl: ''
dashedName: problem-404-crisscross-ellipses
---
# --description--
Ea是椭圆其形式为x2 + 4y2 = 4a2。 Ea'是Ea的旋转图像绕原点O0,0逆时针旋转θ度0°&lt;θ&lt;90°。
b是距离原点最近的两个交点的原点的距离c是另外两个交点的距离。如果ab和c是正整数我们称有序三元组abc为规范椭圆体三元组。例如209,247,286是规范的椭圆体三重态。
令CN为a≤N的不同规范椭球三胞胎abc的数量。可以证实C103= 7C104= 106和C106= 11845 。
找到C1017
# --hints--
`euler404()`应该返回1199215615081353。
```js
assert.strictEqual(euler404(), 1199215615081353);
```
# --seed--
## --seed-contents--
```js
function euler404() {
return true;
}
euler404();
```
# --solutions--
```js
// solution required
```