chore(i18n,learn): processed translations (#44866)

This commit is contained in:
camperbot
2022-01-22 20:38:20 +05:30
committed by GitHub
parent d039479e66
commit 43a2a0a395
324 changed files with 2907 additions and 2916 deletions

View File

@ -1,6 +1,6 @@
---
id: 5900f52c1000cf542c51003e
title: 'Problem 447: Retractions C'
title: '問題 447: レトラクション C'
challengeType: 5
forumTopicId: 302119
dashedName: problem-447-retractions-c
@ -8,23 +8,23 @@ dashedName: problem-447-retractions-c
# --description--
For every integer $n > 1$, the family of functions $f_{n, a, b}$ is defined by:
$n > 1$ のすべての整数について、関数族 $f_{n, a, b}$ を次のように定義します。
$f_{n, a, b}(x) ≡ ax + b\bmod n$ for $a, b, x$ integer and $0 \lt a \lt n$, $0 \le b \lt n$, $0 \le x \lt n$.
整数 $a, b, x$ および $0 \lt a \lt n$, $0 \le b \lt n$, $0 \le x \lt n$ について、$f_{n, a, b}(x) ≡ ax + b\bmod n$
We will call $f_{n, a, b}$ a retraction if $f_{n, a, b}(f_{n, a, b}(x)) \equiv f_{n, a, b}(x)\bmod n$ for every $0 \le x \lt n$.
$0 \le x \lt n$ のすべてにおいて、$f_{n, a, b}(f_{n, a, b}(x)) \equiv f_{n, a, b}(x)\bmod n$ のとき、$f_{n, a, b}$ をレトラクションと呼ぶことにします。
Let $R(n)$ be the number of retractions for $n$.
$n$ のレトラクションの個数を $R(n)$ とします。
$F(N) = \displaystyle\sum_{n = 2}^N R(n)$.
$F(N) = \displaystyle\sum_{n = 2}^N R(n)$
$F({10}^7) ≡ 638\\,042\\,271\bmod 1\\,000\\,000\\,007$.
$F({10}^7) ≡ 638\\,042\\,271\bmod 1\\,000\\,000\\,007$
Find $F({10}^{14})$. Give your answer modulo $1\\,000\\,000\\,007$.
$F({10}^{14})$ を求めなさい。 mod $1\\,000\\,000\\,007$ で答えること。
# --hints--
`retractionsC()` should return `530553372`.
`retractionsC()` `530553372` を返す必要があります。
```js
assert.strictEqual(retractionsC(), 530553372);