結果

問題 No.978 Fibonacci Convolution Easy
ユーザー ytftytft
提出日時 2021-04-17 13:49:25
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 418 bytes
コンパイル時間 1,504 ms
コンパイル使用メモリ 168,268 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-03 21:29:45
合計ジャッジ時間 2,333 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 10 ms
9,344 KB
testcase_02 AC 6 ms
6,272 KB
testcase_03 AC 24 ms
18,176 KB
testcase_04 AC 7 ms
7,040 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 9 ms
8,448 KB
testcase_07 AC 14 ms
12,928 KB
testcase_08 AC 11 ms
9,984 KB
testcase_09 AC 17 ms
14,336 KB
testcase_10 AC 26 ms
18,816 KB
testcase_11 AC 8 ms
7,680 KB
testcase_12 AC 3 ms
5,376 KB
testcase_13 AC 9 ms
8,320 KB
testcase_14 AC 4 ms
5,376 KB
testcase_15 AC 11 ms
9,088 KB
testcase_16 AC 27 ms
18,816 KB
testcase_17 AC 26 ms
18,816 KB
testcase_18 WA -
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    long long N,p;
    cin>>N>>p;
    long long MOD=1000000007;
    long long temp=0;
    vector<long long> a(N);
    long long ans=1,sum=1;
    a[1]=1;
    for(int i=2;i<N;++i){
        a[i]=(a[i-1]*p+a[i-2])%MOD;
        sum=(sum+a[i])%MOD;
        ans=(ans+a[i]*a[i])%MOD;
    }
    ans=(ans+sum*sum)%MOD;
    ans=(ans*500000004)%MOD;
    cout<<ans<<endl;
}
0