chore(learn): Applied MDX format to Chinese curriculum files (#40462)

This commit is contained in:
Randell Dawson
2020-12-16 00:37:30 -07:00
committed by GitHub
parent 873fce02a2
commit 9ce4a02a41
1665 changed files with 58741 additions and 88042 deletions

View File

@ -1,83 +1,51 @@
---
id: 5900f4ab1000cf542c50ffbd
title: 问题3182011个九
challengeType: 5
videoUrl: ''
title: 问题3182011个九
---
## Description
<section id="description">
# --description--
考虑实数√2+√3。
当我们计算√2+√3的偶数幂时
我们得到:
√2+√32 = 9.898979485566356 ...
√2+√34 = 97.98979485566356 ...
√2+√36 = 969.998969071069263 ...
√2+√38 = 9601.99989585502907 ...
√2+√310 = 95049.999989479221 ...
√2+√312 = 940897.9999989371855 ...
√2+√314 = 9313929.99999989263 ...
√2+√316 = 92198401.99999998915 ...
这些幂的小数部分开头的连续九个数字似乎没有减少。
实际上可以证明√2+√32n的小数部分对于大n接近1。
考虑形式为√p+√q的所有实数其中p和q为正整数且p <q使得小数部分
(√p+√q的2n对于大n接近1
这些幂的小数部分开头的连续九个数字似乎没有减少。 实际上可以证明√2+√32n的小数部分对于大n接近1。
考虑形式为√p+√q的所有实数其中p和q为正整数且p &lt;q使得小数部分 √p+√q的2n对于大n接近1。
令Cpqn√p+√q2n的小数部分开头的连续九个数字。
令Npq为n的最小值以使Cpqn≥2011。
求p + q≤2011的∑Npq
</section>
## Instructions
<section id="instructions">
</section>
# --hints--
## Tests
<section id='tests'>
```yml
tests:
- text: <code>euler318()</code>应该返回709313889。
testString: assert.strictEqual(euler318(), 709313889);
```
</section>
## Challenge Seed
<section id='challengeSeed'>
<div id='js-seed'>
`euler318()`应该返回709313889。
```js
function euler318() {
// Good luck!
return true;
}
euler318();
assert.strictEqual(euler318(), 709313889);
```
</div>
# --solutions--
</section>
## Solution
<section id='solution'>
```js
// solution required
```
/section>