結果

問題 No.978 Fibonacci Convolution Easy
ユーザー Fu_LFu_L
提出日時 2021-03-15 23:55:57
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 25 ms / 2,000 ms
コード長 641 bytes
コンパイル時間 4,610 ms
コンパイル使用メモリ 253,848 KB
実行使用メモリ 19,328 KB
最終ジャッジ日時 2024-04-25 02:59:42
合計ジャッジ時間 5,205 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
19,072 KB
testcase_01 AC 17 ms
19,328 KB
testcase_02 AC 15 ms
19,200 KB
testcase_03 AC 25 ms
19,328 KB
testcase_04 AC 15 ms
19,200 KB
testcase_05 AC 13 ms
19,072 KB
testcase_06 AC 17 ms
19,072 KB
testcase_07 AC 19 ms
19,200 KB
testcase_08 AC 17 ms
19,200 KB
testcase_09 AC 21 ms
19,072 KB
testcase_10 AC 24 ms
19,200 KB
testcase_11 AC 15 ms
19,072 KB
testcase_12 AC 12 ms
19,072 KB
testcase_13 AC 15 ms
19,072 KB
testcase_14 AC 13 ms
19,200 KB
testcase_15 AC 17 ms
19,072 KB
testcase_16 AC 23 ms
19,072 KB
testcase_17 AC 24 ms
19,200 KB
testcase_18 AC 12 ms
19,072 KB
testcase_19 AC 12 ms
19,200 KB
testcase_20 AC 12 ms
19,200 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <atcoder/all>
using namespace std;
using namespace atcoder;
typedef long long ll;
typedef pair<ll,ll> P;
typedef modint1000000007 mint;
#define rep(i,a,b) for(ll i=a;i<b;i++)
#define rrep(i,a,b) for(ll i=a;i>=b;i--)
const ll inf=1e18;
ll n,p;
mint ans,a[2000005],s[2000005];
int main(void){
    cin.tie(0);
    ios::sync_with_stdio(0);
    cin>>n>>p;
    if(n==1){
        cout<<0<<endl;
        return 0;
    }
    a[0]=0;
    a[1]=1;
    s[1]=0;
    s[2]=1;
    ans=1;
    rep(i,2,n){
        a[i]=p*a[i-1]+a[i-2];
        s[i+1]=s[i]+a[i];
        ans+=(a[i]*s[i+1]);
    }
    cout<<ans.val()<<endl;

}
0