結果
問題 | No.980 Fibonacci Convolution Hard |
ユーザー | kyort0n |
提出日時 | 2020-01-31 22:21:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 344 ms / 2,000 ms |
コード長 | 1,042 bytes |
コンパイル時間 | 1,585 ms |
コンパイル使用メモリ | 166,840 KB |
実行使用メモリ | 34,764 KB |
最終ジャッジ日時 | 2024-09-17 11:31:02 |
合計ジャッジ時間 | 9,712 ms |
ジャッジサーバーID (参考情報) |
judge6 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 337 ms
34,672 KB |
testcase_01 | AC | 334 ms
34,652 KB |
testcase_02 | AC | 337 ms
34,636 KB |
testcase_03 | AC | 344 ms
34,688 KB |
testcase_04 | AC | 330 ms
34,604 KB |
testcase_05 | AC | 331 ms
34,764 KB |
testcase_06 | AC | 331 ms
34,632 KB |
testcase_07 | AC | 339 ms
34,736 KB |
testcase_08 | AC | 330 ms
34,576 KB |
testcase_09 | AC | 335 ms
34,632 KB |
testcase_10 | AC | 338 ms
34,576 KB |
testcase_11 | AC | 337 ms
34,712 KB |
testcase_12 | AC | 338 ms
34,580 KB |
testcase_13 | AC | 343 ms
34,740 KB |
testcase_14 | AC | 328 ms
34,552 KB |
testcase_15 | AC | 332 ms
34,596 KB |
testcase_16 | AC | 310 ms
34,712 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<ll, ll> l_l; typedef pair<int, int> i_i; template<class T> inline bool chmax(T &a, T b) { if(a < b) { a = b; return true; } return false; } template<class T> inline bool chmin(T &a, T b) { if(a > b) { a = b; return true; } return false; } const long double EPS = 1e-10; const long long INF = 1e18; const long double PI = acos(-1.0L); const ll mod = 1000000007; ll p; ll P[2000100]; ll a[2000010]; int main() { //cout.precision(10); cin.tie(0); ios::sync_with_stdio(false); cin >> p; a[2] = 1; for(int i = 3; i <= 2e6; i++) { a[i] = p * a[i-1] + a[i-2]; a[i] %= mod; } P[1] = 0; P[2] = 0; P[3] = 0; P[4] = 1; for(int i = 5; i <= 2e6; i++) { P[i] = P[i-1] * p + P[i-2] + a[i-2]; P[i] %= mod; } int Q; cin >> Q; while(Q--) { int q; cin >> q; cout << P[q] << endl; } return 0; }