結果

問題 No.978 Fibonacci Convolution Easy
ユーザー oxyshoweroxyshower
提出日時 2020-02-01 15:26:24
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 60 ms / 2,000 ms
コード長 579 bytes
コンパイル時間 1,729 ms
コンパイル使用メモリ 168,648 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-18 21:06:27
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 23 ms
15,488 KB
testcase_02 AC 13 ms
9,344 KB
testcase_03 AC 53 ms
33,152 KB
testcase_04 AC 15 ms
10,880 KB
testcase_05 AC 5 ms
5,376 KB
testcase_06 AC 21 ms
13,696 KB
testcase_07 AC 36 ms
22,656 KB
testcase_08 AC 25 ms
16,640 KB
testcase_09 AC 41 ms
25,472 KB
testcase_10 AC 56 ms
34,560 KB
testcase_11 AC 17 ms
12,032 KB
testcase_12 AC 5 ms
5,376 KB
testcase_13 AC 20 ms
13,568 KB
testcase_14 AC 7 ms
6,144 KB
testcase_15 AC 22 ms
14,976 KB
testcase_16 AC 56 ms
34,432 KB
testcase_17 AC 60 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 #

#include<bits/stdc++.h>
using namespace std;
#ifdef LOCAL_DEBUG
  #include "LOCAL_DEBUG.hpp"
#endif
#define int long long
const int MOD = 1e9 + 7;

signed main(){

  int n, p; cin >> n >> p;
  vector<int> dp(n+1);
  dp[1] = 0, dp[2] = 1;
  for(int i = 3; i <= n; i++){
    dp[i] = p * dp[i-1] + dp[i-2];
    dp[i] %= MOD;
  }

  vector<int> imos(n+2, 0);
  for(int i = 0; i <= n; i++){
    imos[i+1] = imos[i] + dp[i];
    imos[i+1] %= MOD;
  }
  
  int ans = 0;
  for(int i = 1; i <= n; i++){
    ans = (ans + dp[i] * imos[i+1]) % MOD;
  }
  cout << ans << endl;

  return 0;
}
0