結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | keymoon |
提出日時 | 2019-07-11 04:34:18 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 513 bytes |
コンパイル時間 | 240 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 167,912 KB |
最終ジャッジ日時 | 2024-09-16 04:14:07 |
合計ジャッジ時間 | 6,577 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 78 ms
12,416 KB |
testcase_01 | AC | 1,936 ms
71,552 KB |
testcase_02 | AC | 974 ms
41,216 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 | -- | - |
ソースコード
n, p = map(int, input().split()) res = int(0) if n != 1: fibs = [0]*(2*n) fibs[0] = int(0) fibs[1] = int(1) for i in range(2, 2*n): fibs[i] = fibs[i - 1] * p + fibs[i - 2] fibs[i] %= 1000000007 lastFib = fibs[n - 1]; for i in range(n): mod = (i + n) % 4; if mod == 1 or mod == 2: res += lastFib * fibs[i] res %= 1000000007 for i in range(2*n): mod = i % 4 if mod == 1 or mod == 2: res += (min(i, (n - 1) * 2 - i) + 1) // 2 * fibs[i] res %= 1000000007 print(res)