結果

問題 No.980 Fibonacci Convolution Hard
ユーザー ytftytft
提出日時 2021-04-17 15:00:30
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 415 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 1,663 ms
コンパイル使用メモリ 168,216 KB
実行使用メモリ 34,688 KB
最終ジャッジ日時 2024-07-03 22:41:23
合計ジャッジ時間 12,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 410 ms
34,432 KB
testcase_01 AC 392 ms
34,432 KB
testcase_02 AC 403 ms
34,432 KB
testcase_03 AC 395 ms
34,432 KB
testcase_04 AC 389 ms
34,560 KB
testcase_05 AC 401 ms
34,560 KB
testcase_06 AC 406 ms
34,432 KB
testcase_07 AC 394 ms
34,432 KB
testcase_08 AC 415 ms
34,560 KB
testcase_09 AC 401 ms
34,560 KB
testcase_10 AC 392 ms
34,432 KB
testcase_11 AC 383 ms
34,560 KB
testcase_12 AC 392 ms
34,560 KB
testcase_13 AC 402 ms
34,688 KB
testcase_14 AC 395 ms
34,560 KB
testcase_15 AC 412 ms
34,432 KB
testcase_16 AC 370 ms
34,560 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
int main(){
    long long Q,p;
    cin>>p>>Q;
    long long MOD=1000000007;
    int rang=2000000;
    vector<long long> a(rang),b(rang);
    a[1]=1;
    for(int i=2;i<rang;i++){
        a[i]=(a[i-1]*p+a[i-2])%MOD;
    }
    for(int i=2;i<rang;i++){
        b[i]=(p*b[i-1]+b[i-2]+a[i-2])%MOD;
    }
    int input;
    for(int i=0;i<Q;i++){
        cin>>input;
        cout<<b[input-1]<<endl;
    }
}
0