結果

問題 No.980 Fibonacci Convolution Hard
ユーザー tamatotamato
提出日時 2020-01-31 23:08:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 503 ms / 2,000 ms
コード長 679 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,776 KB
最終ジャッジ日時 2024-09-17 11:40:43
合計ジャッジ時間 11,492 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
107,264 KB
testcase_01 AC 483 ms
107,264 KB
testcase_02 AC 492 ms
107,648 KB
testcase_03 AC 486 ms
107,440 KB
testcase_04 AC 493 ms
107,296 KB
testcase_05 AC 497 ms
107,344 KB
testcase_06 AC 494 ms
107,264 KB
testcase_07 AC 500 ms
107,552 KB
testcase_08 AC 503 ms
107,348 KB
testcase_09 AC 491 ms
107,728 KB
testcase_10 AC 488 ms
107,136 KB
testcase_11 AC 492 ms
107,260 KB
testcase_12 AC 484 ms
107,264 KB
testcase_13 AC 497 ms
107,516 KB
testcase_14 AC 498 ms
107,332 KB
testcase_15 AC 495 ms
107,176 KB
testcase_16 AC 462 ms
107,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.readline

    mod = 1000000007
    p = int(input())
    N = 2*10**6
    A = [0] * (N+1)
    A[2] = 1
    for i in range(3, N+1):
        A[i] = ((p * A[i-1])%mod + A[i-2])%mod

    ans = [0] * (N+1)
    for i in range(4, N+1):
        if i % 2 == 0:
            ans[i] = ((p * ans[i-1])%mod + (ans[i-2] + (pow(A[i//2], 2, mod) + pow(A[i//2 - 1], 2, mod))%mod)%mod)%mod
        else:
            ans[i] = (((p * (ans[i-1] + pow(A[(i-1)//2], 2, mod))%mod)%mod + ans[i-2])%mod + (A[i//2] * A[i//2 - 1] * 2)%mod)%mod
    Q = int(input())
    for _ in range(Q):
        print(ans[int(input())])


if __name__ == '__main__':
    main()
0