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,28 +1,30 @@
---
id: 5900f5411000cf542c510052
title: 问题467超级整数
title: 'Problem 467: Superinteger'
challengeType: 5
videoUrl: ''
forumTopicId: 302142
dashedName: problem-467-superinteger
---
# --description--
如果n的数字形成s的数字的子序列则整数s被称为另一整数n的超级整数。例如2718281828是18828的超级整数而314159不是151的超级整数。
An integer s is called a superinteger of another integer n if the digits of n form a subsequence of the digits of s.
令pn为第n个素数并且令cn为第n个复合数。例如p1= 2p10= 29c1= 4且c10= 18. {pii≥1} = {2,3,5,7 11,13,17,19,23,29...} {cii≥1} = {4,6,8,9,10,12,14,15,16,18.... ..}
For example, 2718281828 is a superinteger of 18828, while 314159 is not a superinteger of 151.
设PD为{pi}的数字根的序列CD对{ci}的定义类似PD = {2,3,5,7,2,4,8,1,5 2...} CD = {4,6,8,9,1,3,5,6,7,9 ......}
Let p(n) be the nth prime number, and let c(n) be the nth composite number. For example, p(1) = 2, p(10) = 29, c(1) = 4 and c(10) = 18. {p(i) : i ≥ 1} = {2, 3, 5, 7, 11, 13, 17, 19, 23, 29, ...} {c(i) : i ≥ 1} = {4, 6, 8, 9, 10, 12, 14, 15, 16, 18, ...}
令Pn为通过连接PD的前n个元素形成的整数Cn类似地定义为CD。 P10 = 2357248152 C10 = 4689135679
Let PD the sequence of the digital roots of {p(i)} (CD is defined similarly for {c(i)}): PD = {2, 3, 5, 7, 2, 4, 8, 1, 5, 2, ...} CD = {4, 6, 8, 9, 1, 3, 5, 6, 7, 9, ...}
设fn是最小的正整数它是Pn和Cn的共同超整数。例如f10= 2357246891352679并且f100mod 1 000 000 007 = 771661825。
Let Pn be the integer formed by concatenating the first n elements of PD (Cn is defined similarly for CD). P10 = 2357248152 C10 = 4689135679
求f10 000mod 1 000 000 007
Let f(n) be the smallest positive integer that is a common superinteger of Pn and Cn. For example, f(10) = 2357246891352679, and f(100) mod 1 000 000 007 = 771661825.
Find f(10 000) mod 1 000 000 007.
# --hints--
`euler467()`应该返回775181359
`euler467()` should return 775181359.
```js
assert.strictEqual(euler467(), 775181359);