結果

問題 No.978 Fibonacci Convolution Easy
ユーザー karinohitokarinohito
提出日時 2021-09-06 00:00:10
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 79 ms / 2,000 ms
コード長 909 bytes
コンパイル時間 1,517 ms
コンパイル使用メモリ 170,716 KB
実行使用メモリ 19,748 KB
最終ジャッジ日時 2024-06-02 02:40:16
合計ジャッジ時間 2,819 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 32 ms
10,084 KB
testcase_02 AC 18 ms
7,168 KB
testcase_03 AC 74 ms
19,040 KB
testcase_04 AC 20 ms
7,808 KB
testcase_05 AC 7 ms
6,940 KB
testcase_06 AC 28 ms
9,200 KB
testcase_07 AC 47 ms
13,680 KB
testcase_08 AC 35 ms
10,732 KB
testcase_09 AC 53 ms
15,120 KB
testcase_10 AC 73 ms
19,692 KB
testcase_11 AC 24 ms
8,412 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 27 ms
9,152 KB
testcase_14 AC 9 ms
6,940 KB
testcase_15 AC 31 ms
9,884 KB
testcase_16 AC 79 ms
19,748 KB
testcase_17 AC 76 ms
19,524 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;
#define all(A) A.begin(),A.end()
using vll = vector<ll>;
#define rep(i, n) for (long long i = 0; i < (long long)(n); i++)
using Graph = vector<vector<ll>>;
ll mod=1e9+7;
vll DP(1e5+7,-1);

ll DF(ll M){
    if(DP[M]!=-1)return DP[M];
    ll res=0;
    for(ll i=1;i*i<=M;i++){
        if(M%i==0){
            res+=DF(M/i-1);
            res%=mod;
            if(M!=i*i){
                res+=DF(i-1);
            }
        }
    }    
    DP[M]=res;
    return res;
}
int main() {
    ll N,P;
    cin>>N>>P;
    vll A(N+3);
    A[0]=0,A[1]=1;
    ll S=0,D=0;
    rep(i,N-2){
        A[i+2]=A[i+1]*P+A[i];
        A[i+2]%=mod;
    }
    rep(i,N){
        S+=A[i];
        D+=A[i]*A[i];
        S%=mod;
        D%=mod;
    }
    ll AN=S*S;
    AN%=mod;
    AN+=D;
    AN+=mod;
    AN%=mod;
    AN*=(mod+1)/2;
    AN%=mod;
    cout<<AN<<endl;

}
0