Files
freeCodeCamp/curriculum/challenges/japanese/10-coding-interview-prep/project-euler/problem-319-bounded-sequences.md
2022-01-23 00:08:20 +09:00

1.2 KiB

id, title, challengeType, forumTopicId, dashedName
id title challengeType forumTopicId dashedName
5900f4ab1000cf542c50ffbe 問題 319: 有界数列 5 301975 problem-319-bounded-sequences

--description--

次の条件を満たす長さ n の数列を x_1, x_2, \ldots, x_n とします。

  • x_1 = 2
  • すべての 1 < i ≤ n について、x_{i - 1} < x_i
  • $1 ≤ i, j ≤ n を満たすすべての i, j について、{(x_i)}^j < {(x_j + 1)}^i$

これらを満たす長さ 2 の数列は、{2,4}, {2,5}, {2,6}, {2,7}, {2,8} の 5 つしか存在しません。 これらを満たす長さ 5 の数列は 293 個あり、そのうち 3 例は {2,5,11,25,55}, {2,6,14,36,88}, {2,8,22,64,181} です。

長さ n のそのような数列を t(n) とします。 t(10) = 86195t(20) = 5227991891 が与えられます。

t({10}^{10}) を求め、mod 10^9 で答えなさい。

--hints--

boundedSequences()268457129 を返す必要があります。

assert.strictEqual(boundedSequences(), 268457129);

--seed--

--seed-contents--

function boundedSequences() {

  return true;
}

boundedSequences();

--solutions--

// solution required