結果
問題 | No.978 Fibonacci Convolution Easy |
ユーザー | bachoppi |
提出日時 | 2020-01-31 22:39:54 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 44 ms / 2,000 ms |
コード長 | 926 bytes |
コンパイル時間 | 939 ms |
コンパイル使用メモリ | 96,156 KB |
実行使用メモリ | 34,668 KB |
最終ジャッジ日時 | 2024-09-18 21:00:45 |
合計ジャッジ時間 | 2,091 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 3 ms
5,248 KB |
testcase_01 | AC | 20 ms
15,724 KB |
testcase_02 | AC | 12 ms
9,604 KB |
testcase_03 | AC | 42 ms
33,408 KB |
testcase_04 | AC | 14 ms
11,044 KB |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 17 ms
14,004 KB |
testcase_07 | AC | 29 ms
22,784 KB |
testcase_08 | AC | 20 ms
16,896 KB |
testcase_09 | AC | 33 ms
25,600 KB |
testcase_10 | AC | 43 ms
34,604 KB |
testcase_11 | AC | 16 ms
12,288 KB |
testcase_12 | AC | 4 ms
5,376 KB |
testcase_13 | AC | 17 ms
13,800 KB |
testcase_14 | AC | 7 ms
6,272 KB |
testcase_15 | AC | 19 ms
15,232 KB |
testcase_16 | AC | 43 ms
34,668 KB |
testcase_17 | AC | 44 ms
34,560 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
ソースコード
#include<iostream> #include<string> #include<cstring> #include<algorithm> #include<vector> #include<iomanip> #include<math.h> #include<complex> #include<queue> #include<deque> #include<stack> #include<map> #include<set> #include<bitset> #include<functional> #include<assert.h> #include<numeric> using namespace std; #define REP(i,m,n) for(int i=(int)(m) ; i < (int) (n) ; ++i ) #define rep(i,n) REP(i,0,n) using ll = long long; const int inf=1e9+7; const ll longinf=1LL<<60 ; const ll mod=1e9+7 ; #define PI 3.141592653589793 int main(){ ll N, p; cin >> N >> p; ll a[N], cum[N+1]; a[0]=0; a[1]=1; cum[0]=0, cum[1]=0, cum[2]=1; rep(i, N-2){ int Q; Q = a[i+1]*p%mod; a[i+2] = a[i] + Q; a[i+2]%=mod; cum[i+3] = cum[i+2] + a[i+2]; cum[i+3]%=mod; } ll ans = 0; rep(i, N){ ll K = cum[N] - cum[i]; if(K<0) K+=mod; K%=mod; ll A = a[i]*K; A%=mod; ans+=A; ans%=mod; } cout << ans << endl; }