結果

問題 No.978 Fibonacci Convolution Easy
ユーザー iqueue02iqueue02
提出日時 2020-01-31 22:05:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 554 bytes
コンパイル時間 1,691 ms
コンパイル使用メモリ 177,176 KB
実行使用メモリ 143,744 KB
最終ジャッジ日時 2024-09-17 08:21:44
合計ジャッジ時間 21,339 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
5,248 KB
testcase_01 AC 868 ms
57,984 KB
testcase_02 AC 406 ms
30,848 KB
testcase_03 TLE -
testcase_04 AC 516 ms
37,504 KB
testcase_05 AC 91 ms
10,368 KB
testcase_06 AC 736 ms
50,432 KB
testcase_07 AC 1,459 ms
90,624 KB
testcase_08 AC 965 ms
63,488 KB
testcase_09 AC 1,692 ms
103,552 KB
testcase_10 TLE -
testcase_11 AC 609 ms
43,008 KB
testcase_12 AC 79 ms
9,600 KB
testcase_13 AC 721 ms
49,664 KB
testcase_14 AC 177 ms
16,256 KB
testcase_15 AC 831 ms
56,448 KB
testcase_16 TLE -
testcase_17 TLE -
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;
#define rep(i,n) for(int i = 0; i < (n);i++)
#define sz(x) int(x.size())
typedef long long ll;
typedef pair<int,int> P;
constexpr ll mod = 1e9+7;

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