結果

問題 No.978 Fibonacci Convolution Easy
ユーザー leaf_1415leaf_1415
提出日時 2020-01-31 21:42:54
言語 C++11
(gcc 13.3.0)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 521 bytes
コンパイル時間 476 ms
コンパイル使用メモリ 59,160 KB
実行使用メモリ 34,556 KB
最終ジャッジ日時 2024-09-18 20:54:03
合計ジャッジ時間 1,510 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <set>
#define llint long long
#define mod 1000000007

using namespace std;

llint n;
llint p;
llint a[2000005], sum[2000005];

int main(void)
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	
	cin >> n >> p;
	a[2] = 1, sum[2] = 1;
	for(int i = 3; i <= n; i++){
		a[i] = p*a[i-1]%mod + a[i-2], a[i] %= mod;
		sum[i] = sum[i-1] + a[i], sum[i] %= mod;
	}
	
	llint ans = 0;
	for(int i = 1; i <= n; i++){
		ans += a[i] * sum[i] % mod, ans %= mod;
	}
	cout << ans << endl;
	
	return 0;
}
0