結果
問題 | No.534 フィボナッチフィボナッチ数 |
ユーザー | 草苺奶昔 |
提出日時 | 2023-02-24 16:27:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,178 bytes |
コンパイル時間 | 495 ms |
コンパイル使用メモリ | 82,332 KB |
実行使用メモリ | 69,912 KB |
最終ジャッジ日時 | 2024-09-13 00:08:19 |
合計ジャッジ時間 | 4,595 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 66 ms
67,552 KB |
testcase_01 | AC | 65 ms
67,228 KB |
testcase_02 | AC | 65 ms
67,724 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 64 ms
67,696 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
ソースコード
from typing import List MOD = int(1e9 + 7) def kitamasa(C: List[int], A: List[int], n: int) -> int: if n == 0: return A[0] assert len(C) == len(A) k = len(C) C0 = [0] * k C1 = [0] * k C0[1] = 1 def inc(k, C0, C1): C1[0] = C0[k - 1] * C[0] % MOD for i in range(k - 1): C1[i + 1] = (C0[i] + C0[k - 1] * C[i + 1]) % MOD def dbl(k, C0, C1): D0 = [0] * k D1 = [0] * k D0[:] = C0[:] for j in range(k): C1[j] = C0[0] * C0[j] % MOD for i in range(1, k): inc(k, D0, D1) for j in range(k): C1[j] += C0[i] * D1[j] % MOD D0, D1 = D1, D0 for i in range(k): C1[i] %= MOD p = n.bit_length() - 1 while p: p -= 1 dbl(k, C0, C1) C0, C1 = C1, C0 if (n >> p) & 1: inc(k, C0, C1) C0, C1 = C1, C0 res = 0 for i in range(k): res = (res + C0[i] * A[i]) % MOD return res # 斐波那契 def fib(n: int) -> int: """0 1 1 2 3 5 8 13 21 34 55""" return kitamasa([1, 1], [0, 1], n) n= int(input()) print(fib(n))