結果

問題 No.978 Fibonacci Convolution Easy
ユーザー CleyLCleyL
提出日時 2020-01-31 22:51:15
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 501 bytes
コンパイル時間 521 ms
コンパイル使用メモリ 64,948 KB
実行使用メモリ 34,744 KB
最終ジャッジ日時 2024-09-18 21:01:48
合計ジャッジ時間 1,607 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 17 ms
18,788 KB
testcase_02 AC 11 ms
13,508 KB
testcase_03 AC 39 ms
34,008 KB
testcase_04 AC 12 ms
13,812 KB
testcase_05 AC 4 ms
7,664 KB
testcase_06 AC 15 ms
17,504 KB
testcase_07 AC 25 ms
25,484 KB
testcase_08 AC 19 ms
19,244 KB
testcase_09 AC 29 ms
26,928 KB
testcase_10 AC 40 ms
34,744 KB
testcase_11 AC 13 ms
14,868 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 15 ms
16,744 KB
testcase_14 AC 7 ms
9,036 KB
testcase_15 AC 17 ms
16,960 KB
testcase_16 AC 40 ms
34,652 KB
testcase_17 AC 39 ms
34,604 KB
testcase_18 AC 3 ms
6,944 KB
testcase_19 AC 2 ms
6,944 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;
#define MOD 1000000007
long long memo[2000001];
long long memo2[2000002];
int main(){
  int n,p;cin>>n>>p;
  memo[1] = 0;
  memo[2] = 1;
  for(int i = 3; n >= i; i++){
    memo[i] = (p*memo[i-1]+memo[i-2])%MOD;
  }
  memo2[0] = 0;
  memo2[1] = memo[1];
  for(int i = 2; n >= i; i++){
    memo2[i] = (memo2[i-1]+memo[i])%MOD;
  }

  long long ans = 0;
  for(int i = 1; n >= i; i++){
    ans = (ans+memo[i]*(memo2[i]-memo2[0]))%MOD;
  }
  cout << ans << endl;

}
0