結果
問題 |
No.978 Fibonacci Convolution Easy
|
ユーザー |
![]() |
提出日時 | 2021-03-15 23:55:10 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 580 bytes |
コンパイル時間 | 4,198 ms |
コンパイル使用メモリ | 249,752 KB |
最終ジャッジ日時 | 2025-01-19 17:27:18 |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 20 WA * 1 |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using namespace atcoder; typedef long long ll; typedef pair<ll,ll> P; typedef modint1000000007 mint; #define rep(i,a,b) for(ll i=a;i<b;i++) #define rrep(i,a,b) for(ll i=a;i>=b;i--) const ll inf=1e18; ll n,p; mint ans,a[2000005],s[2000005]; int main(void){ cin.tie(0); ios::sync_with_stdio(0); cin>>n>>p; a[0]=0; a[1]=1; s[1]=0; s[2]=1; ans=1; rep(i,2,n){ a[i]=p*a[i-1]+a[i-2]; s[i+1]=s[i]+a[i]; ans+=(a[i]*s[i+1]); } cout<<ans.val()<<endl; }