結果

問題 No.978 Fibonacci Convolution Easy
ユーザー vwxyzvwxyz
提出日時 2023-04-06 08:12:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 893 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 90,064 KB
最終ジャッジ日時 2024-10-02 09:01:57
合計ジャッジ時間 16,293 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
12,672 KB
testcase_01 AC 685 ms
42,276 KB
testcase_02 AC 371 ms
27,008 KB
testcase_03 AC 1,611 ms
87,040 KB
testcase_04 AC 444 ms
30,848 KB
testcase_05 AC 129 ms
15,616 KB
testcase_06 AC 605 ms
37,920 KB
testcase_07 AC 1,071 ms
60,416 KB
testcase_08 AC 751 ms
45,312 KB
testcase_09 AC 1,305 ms
67,456 KB
testcase_10 AC 1,744 ms
89,984 KB
testcase_11 AC 516 ms
33,920 KB
testcase_12 AC 119 ms
15,232 KB
testcase_13 AC 582 ms
37,504 KB
testcase_14 AC 196 ms
19,200 KB
testcase_15 AC 653 ms
41,264 KB
testcase_16 AC 1,706 ms
90,064 KB
testcase_17 AC 1,710 ms
89,864 KB
testcase_18 RE -
testcase_19 AC 41 ms
11,776 KB
testcase_20 AC 43 ms
11,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import heapq
import itertools
import math
import random
import sys
import time
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines
write=sys.stdout.write

N,P=map(int,readline().split())
mod=10**9+7
A=[None]*N
A[0]=0
A[1]=1
for i in range(2,N):
    A[i]=P*A[i-1]%mod+A[i-2]
    A[i]%=mod
ans=(sum(A)**2%mod+sum(a**2%mod for a in A))*(1+mod)//2%mod
print(ans)
0