結果

問題 No.978 Fibonacci Convolution Easy
ユーザー seriru13seriru13
提出日時 2020-01-31 23:00:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 51 ms / 2,000 ms
コード長 1,135 bytes
コンパイル時間 1,798 ms
コンパイル使用メモリ 202,204 KB
実行使用メモリ 34,560 KB
最終ジャッジ日時 2024-09-18 21:02:08
合計ジャッジ時間 2,851 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
5,248 KB
testcase_01 AC 19 ms
15,360 KB
testcase_02 AC 10 ms
9,344 KB
testcase_03 AC 47 ms
33,280 KB
testcase_04 AC 13 ms
11,008 KB
testcase_05 AC 4 ms
5,376 KB
testcase_06 AC 17 ms
13,696 KB
testcase_07 AC 31 ms
22,656 KB
testcase_08 AC 22 ms
16,768 KB
testcase_09 AC 35 ms
25,472 KB
testcase_10 AC 51 ms
34,432 KB
testcase_11 AC 15 ms
12,288 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 16 ms
13,696 KB
testcase_14 AC 6 ms
6,272 KB
testcase_15 AC 19 ms
14,976 KB
testcase_16 AC 47 ms
34,560 KB
testcase_17 AC 47 ms
34,304 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define inf 10e17
#define rep(i,n) for(long long i=0; i<n; i++)
#define repr(i,n,m) for(long long i=m; i<n; i++)
#define mod 1000000007
#define sorti(x) sort(x.begin(), x.end())
#define sortd(x) sort(x.begin(), x.end(), std::greater<long long>())
#define debug(x) std::cerr << (x) << std::endl;
#define roll(x) for (auto&& itr : x) { cerr << (itr) << " "; }

template <class T> inline void chmax(T &ans, T t) { if (t > ans) ans = t;}
template <class T> inline void chmin(T &ans, T t) { if (t < ans) ans = t;}

long long MOD(long long val, long long m) {
  long long res = val % m;
  if (res < 0) res += m;
  return res;
}

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

  ll ans = 0;
  rep(i, n) {
    ll tmp = MOD((sum[n] % mod) - (sum[i] % mod), mod);
    tmp *= f[i];
    tmp %= mod;
    ans += tmp;
    ans %= mod;
  }

  cout << ans << endl;
}
0