結果

問題 No.978 Fibonacci Convolution Easy
ユーザー stngstng
提出日時 2022-08-16 22:43:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 105 ms / 2,000 ms
コード長 356 bytes
コンパイル時間 280 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 90,752 KB
最終ジャッジ日時 2024-10-03 16:28:42
合計ジャッジ時間 2,855 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
60,032 KB
testcase_01 AC 71 ms
71,936 KB
testcase_02 AC 62 ms
66,176 KB
testcase_03 AC 103 ms
89,728 KB
testcase_04 AC 62 ms
67,328 KB
testcase_05 AC 51 ms
61,184 KB
testcase_06 AC 67 ms
70,272 KB
testcase_07 AC 83 ms
79,616 KB
testcase_08 AC 72 ms
73,088 KB
testcase_09 AC 88 ms
81,920 KB
testcase_10 AC 103 ms
90,752 KB
testcase_11 AC 64 ms
68,608 KB
testcase_12 AC 48 ms
61,184 KB
testcase_13 AC 67 ms
70,528 KB
testcase_14 AC 52 ms
62,592 KB
testcase_15 AC 70 ms
71,424 KB
testcase_16 AC 105 ms
90,752 KB
testcase_17 AC 103 ms
90,752 KB
testcase_18 AC 38 ms
52,192 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,p = map(int,input().split())
mod = 10**9+7

if n == 1:
    print(0)
    exit()

a = [0]*(n)
a[0] = 0
a[1] = 1

for i in range(2,n):
    a[i] = p*a[i-1]+a[i-2]
    a[i] %= mod

rui = [0]*(n+1)
for i in range(n):
    rui[i+1] = rui[i]+a[i]
    rui[i+1] %= mod

ans = 0

for i in range(n):
    ans += a[i]*(rui[i+1]-rui[0]+mod)%mod
    ans %= mod
print(ans)
0