結果

問題 No.978 Fibonacci Convolution Easy
ユーザー pointNpointN
提出日時 2020-02-25 12:27:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 981 bytes
コンパイル時間 1,067 ms
コンパイル使用メモリ 116,444 KB
実行使用メモリ 34,524 KB
最終ジャッジ日時 2024-10-13 11:45:08
合計ジャッジ時間 2,114 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 18 ms
15,380 KB
testcase_02 AC 11 ms
9,424 KB
testcase_03 AC 40 ms
33,172 KB
testcase_04 AC 13 ms
10,796 KB
testcase_05 AC 5 ms
6,820 KB
testcase_06 AC 15 ms
13,692 KB
testcase_07 AC 26 ms
22,568 KB
testcase_08 AC 19 ms
16,604 KB
testcase_09 AC 28 ms
25,484 KB
testcase_10 AC 38 ms
34,356 KB
testcase_11 AC 15 ms
12,108 KB
testcase_12 AC 4 ms
6,820 KB
testcase_13 AC 16 ms
13,536 KB
testcase_14 AC 6 ms
6,816 KB
testcase_15 AC 17 ms
14,992 KB
testcase_16 AC 37 ms
34,524 KB
testcase_17 AC 38 ms
34,304 KB
testcase_18 AC 2 ms
6,816 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 1 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <vector>
#include <algorithm>
#include <functional>
#include <cmath>
#include <iomanip>
#include <stack>
#include <queue>
#include <numeric>
#include <map>
#include <unordered_map>
#include <set>
#include <fstream>
#include <chrono>
#include <random>
#include <bitset>
#define rep(i,n) for(int i=0;i<(n);i++)
#define all(x) x.begin(), x.end()
#define rall(x) x.rbegin(), x.rend()
#define sz(x) ((int)(x).size())
#define pb push_back
#define mod 1000000007
using ll = long long;
using namespace std;
ll gcd(ll a, ll b) {return b?gcd(b,a%b):a;}
ll lcm(ll a, ll b) {return a/gcd(a,b)*b;}

int main(){
  ll N; cin >> N;
  ll p; cin >> p;
  vector<ll> fib(N);
  fib[0] = 0; fib[1] = 1;
  for(int i=2; i<N; i++){
    fib[i]=(fib[i-1]*p+fib[i-2])%mod;
  }
  vector<ll> sums(N+1,0);
  rep(i,N) sums[i+1] = (sums[i] + fib[i])%mod;
  ll ans = 0;
  rep(i,N){
    ans += fib[i]*sums[i+1];
    ans %= mod;
  }
  cout << ans << endl;
  return 0;
}
0