結果

問題 No.978 Fibonacci Convolution Easy
ユーザー i_mrhji_mrhj
提出日時 2020-03-22 13:14:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 143 ms / 2,000 ms
コード長 1,096 bytes
コンパイル時間 770 ms
コンパイル使用メモリ 96,068 KB
実行使用メモリ 50,324 KB
最終ジャッジ日時 2024-06-06 22:39:59
合計ジャッジ時間 2,696 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 4 ms
6,816 KB
testcase_01 AC 58 ms
24,792 KB
testcase_02 AC 32 ms
17,708 KB
testcase_03 AC 135 ms
49,308 KB
testcase_04 AC 37 ms
19,072 KB
testcase_05 AC 11 ms
8,592 KB
testcase_06 AC 50 ms
21,676 KB
testcase_07 AC 90 ms
36,372 KB
testcase_08 AC 62 ms
26,816 KB
testcase_09 AC 105 ms
40,392 KB
testcase_10 AC 143 ms
50,116 KB
testcase_11 AC 44 ms
20,420 KB
testcase_12 AC 9 ms
8,332 KB
testcase_13 AC 52 ms
23,192 KB
testcase_14 AC 18 ms
11,104 KB
testcase_15 AC 57 ms
24,908 KB
testcase_16 AC 143 ms
50,324 KB
testcase_17 AC 140 ms
50,132 KB
testcase_18 AC 2 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <climits>
#include <cmath>
#include <iostream>
#include <iomanip>
#include <string>
#include <cstdio>
#include <climits>
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>
#include <utility>
#include <queue>
#include <cstring>
#include <set>
#include <map>
#include <complex>
#define rep(i, n) for (int i = 0; i < int(n); i++)
using namespace std;
long long MOD = 1000000007;
long long INF = 1000000000000000; //10^15
typedef long long ll;
typedef unsigned long long ull;


ll powMod(ll x, ll n, ll mod) {
  if (n == 0) return 1;
  ll t = powMod(x, n/2, mod);
  t = t * t % mod;
  if (n & 1) return t * x % mod;
  return t;
}

ll a[2001000];ll sum[2001000] = {};ll c[2001000] = {};

int main(void) {
  
  int n; ll p;
  cin >> n >> p;
  
  a[1] = 0; a[2] = 1;
  for (int i = 3; i <= n; i++) {
    a[i] = ((p*a[i-1]%MOD) + a[i-2])%MOD;
  }
  
  for (int i = 1; i <= n; i++) {
    sum[i] = (sum[i - 1] + a[i])%MOD;
  }
  
  for (int i = 1; i <= n; i++) {
    c[i] = (c[i - 1] + (a[i]*sum[i]%MOD))%MOD;
  }
  cout << c[n] << endl;

  return 0;
}
0