結果

問題 No.978 Fibonacci Convolution Easy
ユーザー tadanoningentadanoningen
提出日時 2020-10-08 04:09:43
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 34 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 686 ms
コンパイル使用メモリ 76,880 KB
実行使用メモリ 18,816 KB
最終ジャッジ日時 2024-07-20 05:41:30
合計ジャッジ時間 1,581 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 13 ms
9,344 KB
testcase_02 AC 8 ms
6,400 KB
testcase_03 AC 34 ms
18,176 KB
testcase_04 AC 10 ms
7,040 KB
testcase_05 AC 3 ms
5,376 KB
testcase_06 AC 12 ms
8,440 KB
testcase_07 AC 20 ms
12,988 KB
testcase_08 AC 15 ms
9,984 KB
testcase_09 AC 23 ms
14,392 KB
testcase_10 AC 30 ms
18,768 KB
testcase_11 AC 10 ms
7,656 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 12 ms
8,376 KB
testcase_14 AC 5 ms
5,376 KB
testcase_15 AC 13 ms
9,216 KB
testcase_16 AC 30 ms
18,816 KB
testcase_17 AC 30 ms
18,816 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<iostream>
#include<vector>
#include<map>
#include<algorithm>
#define ll long long
#define mod 1000000007

using namespace std;

int main(){
  ll n,p;
  cin >> n >> p;
  vector<ll> dp(n+1);
  dp[1] = 0;dp[2] = 1;
  for(int i=3;i < n+1;i++) dp[i] = p*dp[i-1]%mod + dp[i-2]%mod;
  ll ans = 0;
  ll sum = 0;
  for(int i=1;i <= n;i++){
    sum += dp[i];
    sum %= mod;
    ans += sum*dp[i] % mod;
    ans = (ans+mod)%mod;
  }
  cout << ans << endl;
  return 0;
}
0