結果
問題 | No.980 Fibonacci Convolution Hard |
ユーザー | keymoon |
提出日時 | 2019-07-11 21:43:40 |
言語 | Vim script (v9.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 321 bytes |
コンパイル時間 | 96 ms |
コンパイル使用メモリ | 5,120 KB |
実行使用メモリ | 14,208 KB |
最終ジャッジ日時 | 2024-09-16 03:11:42 |
合計ジャッジ時間 | 3,385 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge6 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | RE | - |
testcase_12 | RE | - |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
testcase_16 | RE | - |
ソースコード
p = int(input()) fibs = [0]*2000001 fibs[1] = 0; fibs[2] = 1; for i in range(3, len(fibs)): fibs[i] = (fibs[i - 1] * p + fibs[i - 2]) % 1000000007 res = [0]*2000001; for i in range(4, len(fibs)): res[i] = ((i - 3) * fibs[i - 2] - res[i - 2]) % 1000000007 Q = int(input()) for i in range(Q): print(res[int(input())])