結果

問題 No.980 Fibonacci Convolution Hard
ユーザー tempura_pptempura_pp
提出日時 2020-01-30 02:26:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 546 ms / 2,000 ms
コード長 269 bytes
コンパイル時間 621 ms
コンパイル使用メモリ 82,196 KB
実行使用メモリ 107,736 KB
最終ジャッジ日時 2024-09-17 11:24:20
合計ジャッジ時間 11,692 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
107,072 KB
testcase_01 AC 472 ms
107,344 KB
testcase_02 AC 483 ms
107,384 KB
testcase_03 AC 484 ms
107,232 KB
testcase_04 AC 503 ms
107,380 KB
testcase_05 AC 539 ms
107,500 KB
testcase_06 AC 546 ms
107,344 KB
testcase_07 AC 538 ms
107,432 KB
testcase_08 AC 477 ms
107,592 KB
testcase_09 AC 494 ms
107,736 KB
testcase_10 AC 487 ms
107,296 KB
testcase_11 AC 536 ms
107,404 KB
testcase_12 AC 481 ms
107,636 KB
testcase_13 AC 502 ms
107,456 KB
testcase_14 AC 484 ms
107,668 KB
testcase_15 AC 499 ms
107,436 KB
testcase_16 AC 450 ms
107,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M = 2000001;
mod = 10**9+7 ;
p = int(input())
ans = [0]*M
a = [0]*M
a[2] = 1
for i in range(3,M) : 
    ans[i] = (p * ans[i-1] + ans[i-2] + a[i-2]) % mod
    a[i] = (p * a[i-1] + a[i-2]) % mod
q = int(input())
for i in range(q) : 
    x = int(input())
    print(ans[x])
0