結果

問題 No.978 Fibonacci Convolution Easy
ユーザー realDivineJKrealDivineJK
提出日時 2020-05-20 21:30:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 217 bytes
コンパイル時間 93 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-10-01 23:44:31
合計ジャッジ時間 21,757 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
11,392 KB
testcase_01 AC 1,008 ms
41,216 KB
testcase_02 AC 517 ms
25,984 KB
testcase_03 TLE -
testcase_04 AC 634 ms
29,824 KB
testcase_05 AC 160 ms
14,848 KB
testcase_06 AC 872 ms
36,992 KB
testcase_07 AC 1,559 ms
59,392 KB
testcase_08 AC 1,075 ms
44,288 KB
testcase_09 AC 1,821 ms
66,560 KB
testcase_10 TLE -
testcase_11 AC 713 ms
33,024 KB
testcase_12 AC 141 ms
14,336 KB
testcase_13 AC 860 ms
36,480 KB
testcase_14 AC 260 ms
17,920 KB
testcase_15 AC 980 ms
40,320 KB
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 29 ms
10,496 KB
testcase_19 AC 28 ms
10,496 KB
testcase_20 AC 29 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
mod = 1000000007

L = [0, 1]
S = 0
SS = 0
for i in range(N):
    S += L[i] * SS % mod
    S %= mod
    L.append((L[i] + p * L[i+1]) % mod)
    SS += L[i+1] % mod
    SS %= mod
print(S)
0