結果

問題 No.978 Fibonacci Convolution Easy
ユーザー onakaT_TitaionakaT_Titai
提出日時 2020-03-09 19:31:36
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 1,787 bytes
コンパイル時間 1,145 ms
コンパイル使用メモリ 112,396 KB
実行使用メモリ 34,548 KB
最終ジャッジ日時 2024-04-26 07:02:17
合計ジャッジ時間 2,225 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 3 ms
6,812 KB
testcase_01 AC 22 ms
15,488 KB
testcase_02 AC 14 ms
9,340 KB
testcase_03 AC 49 ms
33,288 KB
testcase_04 AC 16 ms
10,972 KB
testcase_05 AC 5 ms
6,940 KB
testcase_06 AC 19 ms
13,816 KB
testcase_07 AC 32 ms
22,588 KB
testcase_08 AC 24 ms
16,656 KB
testcase_09 AC 38 ms
25,500 KB
testcase_10 AC 49 ms
34,548 KB
testcase_11 AC 17 ms
12,032 KB
testcase_12 AC 4 ms
6,944 KB
testcase_13 AC 19 ms
13,696 KB
testcase_14 AC 8 ms
6,940 KB
testcase_15 AC 22 ms
15,076 KB
testcase_16 AC 53 ms
34,540 KB
testcase_17 AC 52 ms
34,424 KB
testcase_18 AC 1 ms
6,940 KB
testcase_19 AC 2 ms
6,940 KB
testcase_20 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#define _USE_MATH_DEFINES
#include <iostream>
#include <fstream>
#include <sstream>
#include <string>
#include <cstring>
#include <vector>
#include <set>
#include <map>
#include <unordered_map>
#include <queue>
#include <deque>
#include <stack>
#include <algorithm>
#include <bitset>
#include <cmath>
#include <cstdlib>
#include <ctime>
#include <numeric>
#include <functional>
#include <cctype>
#include <list>
#include <limits>
#include <cassert>
#include <random>
#include <time.h>
#include <unordered_set>

using namespace std;
using Int = long long;

constexpr double EPS = 1e-10;
constexpr long long MOD = 1000000007;

long long mod_pow(long long x, long long n) {
    long long res = 1;
    for (int i = 0;i < 60; i++) {
        if (n >> i & 1) res = res * x % MOD;
        x = x * x % MOD;
    }
    return res;
}

long long my_mod_pow(long long x, long long n) {
	long long ret = 1;
	for (; n > 0; n >>= 1, x = x * x % MOD) {
		if (n & 1) {
			ret = ret * x % MOD;
		}
	}
	return ret;
}

template<typename T>
T gcd(T a, T b) {
    return b != 0 ? gcd(b, a % b) : a;
}

template<typename T>
T lcm(T a, T b) {
    return a * b / gcd(a, b);
}

void fastInput() {
    cin.tie(0);
    ios::sync_with_stdio(false);
}

int main(void) {
    int N; cin >> N;
    long long P; cin >> P; 
    vector<long long> A(N+1);
    A[1] = 0;
    A[2] = 1;
    for (int i = 3; i <= N; i++) {
        A[i] = P * A[i-1] % MOD + A[i-2];
        A[i] %= MOD; 
    }
    vector<long long> imos(N+1);
    for (int i = 1; i <= N; i++) {
        imos[i] = A[i] + imos[i-1];
        imos[i] %= MOD;
    }

    long long ans = 0;
    for (int i = 1; i <= N; i++) {
        long long sum = (imos[N] - imos[i-1] + MOD) % MOD;
        ans += sum * A[i] % MOD;
        ans %= MOD;
    }
    cout << ans << endl;
}
0