chore(i18n,curriculum): update translations (#44283)

This commit is contained in:
camperbot
2021-11-29 08:32:04 -08:00
committed by GitHub
parent aa9215b111
commit a8b0332720
124 changed files with 1217 additions and 945 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f51e1000cf542c510030
title: 'Problem 432: Totient sum'
title: 'Problema 432: Soma de totientes'
challengeType: 5
forumTopicId: 302103
dashedName: problem-432-totient-sum
@ -8,18 +8,18 @@ dashedName: problem-432-totient-sum
# --description--
Let S(n,m) = φ(n × i) for 1 ≤ i ≤ m. (φ is Euler's totient function)
Considere $S(n, m) = \sum φ(n × i)$ para $1 ≤ i ≤ m$. ($φ$ é a função totiente de Euler)
You are given that S(510510,106 )= 45480596821125120.
Você é informado de que $S(510.510,{10}^6) = 45.480.596.821.125.120$.
Find S(510510,1011). Give the last 9 digits of your answer.
Encontre $S(510.510, {10}^{11})$. Dê os últimos 9 algarismos da sua resposta.
# --hints--
`euler432()` should return 754862080.
`totientSum()` deve retornar `754862080`.
```js
assert.strictEqual(euler432(), 754862080);
assert.strictEqual(totientSum(), 754862080);
```
# --seed--
@ -27,12 +27,12 @@ assert.strictEqual(euler432(), 754862080);
## --seed-contents--
```js
function euler432() {
function totientSum() {
return true;
}
euler432();
totientSum();
```
# --solutions--