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,22 @@
---
id: 5900f5041000cf542c510016
title: 问题407幂等元素
title: 'Problem 407: Idempotents'
challengeType: 5
videoUrl: ''
forumTopicId: 302075
dashedName: problem-407-idempotents
---
# --description--
如果我们计算a2 mod 6为0≤a≤5我们得到0,1,4,3,4,1
If we calculate a2 mod 6 for 0 ≤ a ≤ 5 we get: 0,1,4,3,4,1.
a2≡amod 6的最大值为4.让我们将Mn称为a <n的最大值使得a2≡amod n。所以M6= 4
The largest value of a such that a2 ≡ a mod 6 is 4. Let's call M(n) the largest value of a < n such that a2 ≡ a (mod n). So M(6) = 4.
找ΣMn为1≤n≤107
Find ∑M(n) for 1 ≤ n ≤ 107.
# --hints--
`euler407()`应该返回39782849136421
`euler407()` should return 39782849136421.
```js
assert.strictEqual(euler407(), 39782849136421);