結果

問題 No.978 Fibonacci Convolution Easy
ユーザー ysystem7ysystem7
提出日時 2020-03-17 15:53:19
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 134 ms / 2,000 ms
コード長 1,109 bytes
コンパイル時間 2,578 ms
コンパイル使用メモリ 211,424 KB
実行使用メモリ 19,116 KB
最終ジャッジ日時 2024-05-08 01:15:55
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,816 KB
testcase_01 AC 53 ms
10,180 KB
testcase_02 AC 29 ms
7,312 KB
testcase_03 AC 127 ms
18,520 KB
testcase_04 AC 34 ms
8,012 KB
testcase_05 AC 9 ms
6,940 KB
testcase_06 AC 46 ms
9,916 KB
testcase_07 AC 82 ms
14,828 KB
testcase_08 AC 57 ms
10,280 KB
testcase_09 AC 94 ms
14,960 KB
testcase_10 AC 134 ms
19,116 KB
testcase_11 AC 39 ms
8,756 KB
testcase_12 AC 8 ms
6,944 KB
testcase_13 AC 46 ms
9,140 KB
testcase_14 AC 14 ms
6,944 KB
testcase_15 AC 51 ms
9,896 KB
testcase_16 AC 132 ms
19,056 KB
testcase_17 AC 132 ms
19,064 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 1 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma GCC optimize("Ofast")
#include <bits/stdc++.h>
#define rep(i,n) for(int i=0;i<n;i++)
#define cinf(n,x) for(int i=0;i<(n);i++)cin>>x[i];
#define ft first
#define sc second
#define pb push_back
#define lb lower_bound
#define ub upper_bound
#define all(v) (v).begin(),(v).end()
#define mod 1000000007
using namespace std;
typedef long long ll;
template<class T> using V=vector<T>;
using Graph = vector<vector<int>>;
using P=pair<ll,ll>;
typedef unsigned long long ull;
typedef long double ldouble;
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } return false; }
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } return false; }

const ll INF=1e18;
ll a[2000005];

int main(){
    ll n,p;
    cin>>n>>p;
    if(n==1) cout<<0<<endl;
    else if(n==2) cout<<1<<endl;
    else{
        ll ans=1;
        ll sum=1;
        a[1]=0;
        a[2]=1;
        for(ll i=3;i<=n;i++){
            a[i]=((p*a[i-1])%mod+a[i-2])%mod;
            sum=(sum+a[i])%mod;
            ans=(ans+(a[i]*sum)%mod)%mod;
        }
        cout<<ans<<endl;
    }
}
0