結果

問題 No.978 Fibonacci Convolution Easy
ユーザー shop_oneshop_one
提出日時 2020-01-31 21:38:50
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 37 ms / 2,000 ms
コード長 725 bytes
コンパイル時間 794 ms
コンパイル使用メモリ 83,528 KB
実行使用メモリ 34,304 KB
最終ジャッジ日時 2024-09-18 20:52:00
合計ジャッジ時間 1,854 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 16 ms
15,296 KB
testcase_02 AC 10 ms
9,304 KB
testcase_03 AC 34 ms
33,020 KB
testcase_04 AC 13 ms
10,832 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 16 ms
13,568 KB
testcase_07 AC 24 ms
22,588 KB
testcase_08 AC 18 ms
16,480 KB
testcase_09 AC 28 ms
25,472 KB
testcase_10 AC 37 ms
34,264 KB
testcase_11 AC 14 ms
12,000 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 15 ms
13,368 KB
testcase_14 AC 6 ms
6,144 KB
testcase_15 AC 16 ms
14,928 KB
testcase_16 AC 36 ms
34,304 KB
testcase_17 AC 36 ms
34,304 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 #

// I SELL YOU...! 
#include<iostream>
#include<vector>
#include<algorithm>
#include<functional>
#include<queue>
#include<chrono>
#include<iomanip>
#include<map>
#include<set>
#define MOD 1000000007
using namespace std;
using ll = long long;
using P = pair<ll,ll>;
void init_io(){
  cin.tie(0);
  ios::sync_with_stdio(false);
  cout << setprecision(10);
}
signed main(){
  init_io();
  ll n,p,ans=0;
  cin >> n >> p;
  vector<ll> a(n+1),sum(n+2);
  a[0] = 0;
  a[1] = 1;
  sum[0] = 0;
  sum[1] = 1;
  for(int i=2;i<=n;i++){
    a[i] = p*a[i-1] + a[i-2];
    a[i] %= MOD;
    sum[i] = sum[i-1] + a[i];
    sum[i] %= MOD;
  }
  for(int i=n-1;i>=0;i--){
    ans += (sum[i]*a[i])%MOD;
    ans %= MOD;
  }
  cout << ans << endl;
}
0