結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | Nagisa |
提出日時 | 2020-01-31 22:30:58 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 345 bytes |
コンパイル時間 | 91 ms |
コンパイル使用メモリ | 12,416 KB |
実行使用メモリ | 167,968 KB |
最終ジャッジ日時 | 2024-09-17 09:06:41 |
合計ジャッジ時間 | 5,673 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 67 ms
19,616 KB |
testcase_01 | AC | 1,302 ms
71,552 KB |
testcase_02 | AC | 651 ms
41,472 KB |
testcase_03 | TLE | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
ソースコード
MOD = 1000000007 N, p = map(int,input().split()) S = [0,1] a, b = 0, 1 for k in range(N): t = p*b + a t %= MOD a, b = b, t S.append(t) T = [0 for k in range(N)] for k in range(N): T[k] = T[k-1] + S[k] T[k] %= MOD ans = S[0]*T[-1] ans %= MOD for k in range(1,N): ans += S[k]*(T[-1]-T[k-1]) ans %= MOD print(ans)