結果

問題 No.978 Fibonacci Convolution Easy
ユーザー chocoruskchocorusk
提出日時 2020-01-31 21:43:20
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 27 ms / 2,000 ms
コード長 807 bytes
コンパイル時間 908 ms
コンパイル使用メモリ 109,532 KB
実行使用メモリ 19,080 KB
最終ジャッジ日時 2024-09-18 20:54:18
合計ジャッジ時間 1,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 12 ms
10,000 KB
testcase_02 AC 7 ms
7,792 KB
testcase_03 AC 26 ms
18,360 KB
testcase_04 AC 8 ms
7,312 KB
testcase_05 AC 3 ms
6,940 KB
testcase_06 AC 11 ms
8,980 KB
testcase_07 AC 18 ms
13,156 KB
testcase_08 AC 14 ms
10,708 KB
testcase_09 AC 20 ms
15,156 KB
testcase_10 AC 27 ms
18,920 KB
testcase_11 AC 10 ms
9,420 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 11 ms
8,952 KB
testcase_14 AC 5 ms
6,944 KB
testcase_15 AC 11 ms
10,416 KB
testcase_16 AC 26 ms
19,080 KB
testcase_17 AC 27 ms
19,000 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 <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<int, int> P;
const ll MOD=1e9+7;
int main()
{
	int n;
	ll p;
	cin>>n>>p;
	ll a[2000020];
	a[1]=0, a[2]=1;
	for(int i=3; i<=n; i++){
		a[i]=(p*a[i-1]+a[i-2])%MOD;
	}
	ll s=0, ans=0;
	for(int i=1; i<=n; i++){
		(s+=a[i])%=MOD;
		(ans+=s*a[i])%=MOD;
	}
	cout<<ans<<endl;
	return 0;
}
0