結果

問題 No.978 Fibonacci Convolution Easy
ユーザー otamay6otamay6
提出日時 2020-01-31 21:50:54
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 43 ms / 2,000 ms
コード長 613 bytes
コンパイル時間 1,657 ms
コンパイル使用メモリ 168,408 KB
実行使用メモリ 34,540 KB
最終ジャッジ日時 2024-09-18 20:55:00
合計ジャッジ時間 2,418 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 16 ms
15,360 KB
testcase_02 AC 10 ms
9,344 KB
testcase_03 AC 41 ms
33,216 KB
testcase_04 AC 11 ms
10,980 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 14 ms
13,824 KB
testcase_07 AC 24 ms
22,764 KB
testcase_08 AC 19 ms
16,636 KB
testcase_09 AC 29 ms
25,448 KB
testcase_10 AC 43 ms
34,392 KB
testcase_11 AC 13 ms
12,032 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 16 ms
13,696 KB
testcase_14 AC 7 ms
6,144 KB
testcase_15 AC 15 ms
15,148 KB
testcase_16 AC 42 ms
34,432 KB
testcase_17 AC 43 ms
34,540 KB
testcase_18 AC 2 ms
5,376 KB
testcase_19 AC 2 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

int main(){
    ll mod=1e9+7;
    ll N,p;
    cin>>N>>p;
    vector<ll> a(N);
    a[0]=0,a[1]=1;
    rep(i,2,N){
        a[i]=p*a[i-1]+a[i-2];
        a[i]%=mod;
    }
    vector<ll> S(N+1);
    REP(i,N){
        S[i+1]=S[i]+a[i];
        S[i+1]%=mod;
    }
    ll ans=0;
    REP(i,N){
        ans+=a[i]*S[i+1];
        ans%=mod;
    }
    cout<<ans<<endl;
}
0