chore(i8n,learn): processed translations

This commit is contained in:
Crowdin Bot
2021-02-06 04:42:36 +00:00
committed by Mrugesh Mohapatra
parent 15047f2d90
commit e5c44a3ae5
3274 changed files with 172122 additions and 14164 deletions

View File

@ -1,22 +1,24 @@
---
id: 5900f4601000cf542c50ff73
title: 问题243恢复力
title: 'Problem 243: Resilience'
challengeType: 5
videoUrl: ''
forumTopicId: 301890
dashedName: problem-243-resilience
---
# --description--
分子小于其分母的正分数称为适当分数。对于任何分母d将有d-1个适当的分数;例如d = 121 / 12,2 / 12,3 / 12,4 / 12,5 / 12,6 / 12,7 / 12,8 / 12,9 / 12,10 / 12,11 / 12。
A positive fraction whose numerator is less than its denominator is called a proper fraction.
我们将称一个无法取消弹性部分的分数。此外我们将分母Rd的弹性定义为具有弹性的适当分数的比率;例如R12= 4/11。事实上d = 12是具有弹性Rd<4/10的最小分母。
For any denominator, d, there will be d1 proper fractions; for example, with d = 12:1/12 , 2/12 , 3/12 , 4/12 , 5/12 , 6/12 , 7/12 , 8/12 , 9/12 , 10/12 , 11/12 .
找到最小分母d具有弹性Rd<15499/94744。
We shall call a fraction that cannot be cancelled down a resilient fraction. Furthermore we shall define the resilience of a denominator, R(d), to be the ratio of its proper fractions that are resilient; for example, R(12) = 4/11 . In fact, d = 12 is the smallest denominator having a resilience R(d) < 4/10 .
Find the smallest denominator d, having a resilience R(d) < 15499/94744 .
# --hints--
`euler243()`应该返回892371480
`euler243()` should return 892371480.
```js
assert.strictEqual(euler243(), 892371480);