結果

問題 No.978 Fibonacci Convolution Easy
ユーザー AEnAEn
提出日時 2022-05-19 09:51:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 217 bytes
コンパイル時間 212 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 200,284 KB
最終ジャッジ日時 2024-09-17 15:22:14
合計ジャッジ時間 2,860 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
60,160 KB
testcase_01 AC 93 ms
113,792 KB
testcase_02 AC 74 ms
88,704 KB
testcase_03 AC 155 ms
199,552 KB
testcase_04 AC 74 ms
93,120 KB
testcase_05 AC 51 ms
66,304 KB
testcase_06 AC 83 ms
107,392 KB
testcase_07 AC 110 ms
147,072 KB
testcase_08 AC 92 ms
120,448 KB
testcase_09 AC 120 ms
169,600 KB
testcase_10 AC 151 ms
200,284 KB
testcase_11 AC 80 ms
102,016 KB
testcase_12 AC 50 ms
64,896 KB
testcase_13 AC 82 ms
107,356 KB
testcase_14 AC 56 ms
72,192 KB
testcase_15 AC 87 ms
113,664 KB
testcase_16 AC 151 ms
200,064 KB
testcase_17 AC 151 ms
199,936 KB
testcase_18 AC 39 ms
52,096 KB
testcase_19 AC 39 ms
51,712 KB
testcase_20 AC 39 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, p = map(int, input().split())
a = [0, 1]
mod = 10**9+7
for i in range(2, N):
    a.append((p*a[-1]+a[-2])%mod)
s = 0
res = 0
for i in range(N):
    s += a[i]
    s %= mod
    res += s*a[i]
    res %= mod
print(res)
0