結果

問題 No.978 Fibonacci Convolution Easy
ユーザー kagasankagasan
提出日時 2020-03-09 19:10:55
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 1,185 bytes
コンパイル時間 2,070 ms
コンパイル使用メモリ 168,136 KB
実行使用メモリ 19,224 KB
最終ジャッジ日時 2024-04-26 06:20:27
合計ジャッジ時間 2,745 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 17 ms
11,048 KB
testcase_02 AC 10 ms
7,448 KB
testcase_03 AC 38 ms
18,468 KB
testcase_04 AC 11 ms
7,944 KB
testcase_05 AC 4 ms
6,940 KB
testcase_06 AC 15 ms
9,860 KB
testcase_07 AC 25 ms
13,456 KB
testcase_08 AC 18 ms
10,652 KB
testcase_09 AC 28 ms
16,408 KB
testcase_10 AC 38 ms
19,224 KB
testcase_11 AC 13 ms
9,432 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 14 ms
9,968 KB
testcase_14 AC 6 ms
6,940 KB
testcase_15 AC 15 ms
9,912 KB
testcase_16 AC 39 ms
19,144 KB
testcase_17 AC 39 ms
18,992 KB
testcase_18 AC 2 ms
6,944 KB
testcase_19 AC 3 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef pair<ll, ll> P;
typedef pair<ll, P>IP;
typedef vector<ll> V;
typedef vector<V> V2;
typedef vector<vector<P> > G;
void g_dir(G &graph, ll a, ll b, ll w = 1){graph[a].push_back(P(b, w));}
void g_undir(G &graph, ll a, ll b, ll w = 1){g_dir(graph, a, b, w);g_dir(graph, b, a, w);}
#define rep(i, n) for(ll (i) = 0; (i) < (n); (i)++)
#define rep1(i, n) for(ll (i) = 1; (i) <= (n); (i)++)
#define rrep(i, n) for(ll (i) = (n) - 1; (i) >= 0; (i)--)
#define rrep1(i, n) for(ll (i) = (n); (i) >= 1; (i)--)
template<class T> void chmax(T &a, const T &b){if(a < b){a = b;}}
template<class T> void chmin(T &a, const T &b){if(a > b){a = b;}}
const ll INF = 1145141919;
const ll MOD = 1000000007;
const ll NUM = 101010;

ll fib[2020202];

int main(){

    ll N, p;
    cin >> N >> p;
    ll ans = 0;
    fib[1] = 0;
    fib[2] = 1;
    for(ll i = 3; i <= N; i++){
        fib[i] = (p * fib[i - 1]) % MOD + fib[i - 2];
        fib[i] %= MOD;
    }
    ll tmp = 0;
    rep1(i, N){
        tmp = (tmp + fib[i]) % MOD;
        ans += (tmp * fib[i]) % MOD;
        ans %= MOD;
    }

    cout << ans << endl;
    
    return 0;
}
0