結果

問題 No.1489 Repeat Cumulative Sum
ユーザー magstamagsta
提出日時 2021-04-05 20:08:17
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 891 bytes
コンパイル時間 751 ms
コンパイル使用メモリ 84,384 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 04:30:50
合計ジャッジ時間 2,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 45 ms
5,376 KB
testcase_04 AC 43 ms
5,376 KB
testcase_05 AC 47 ms
5,376 KB
testcase_06 AC 39 ms
5,376 KB
testcase_07 AC 26 ms
5,376 KB
testcase_08 AC 17 ms
5,376 KB
testcase_09 AC 56 ms
5,376 KB
testcase_10 AC 47 ms
5,376 KB
testcase_11 AC 39 ms
5,376 KB
testcase_12 AC 4 ms
5,376 KB
testcase_13 AC 34 ms
5,376 KB
testcase_14 AC 59 ms
5,376 KB
testcase_15 AC 56 ms
5,376 KB
testcase_16 AC 28 ms
5,376 KB
testcase_17 AC 32 ms
5,376 KB
testcase_18 AC 26 ms
5,376 KB
testcase_19 AC 17 ms
5,376 KB
testcase_20 AC 21 ms
5,376 KB
testcase_21 AC 38 ms
5,376 KB
testcase_22 AC 5 ms
5,376 KB
testcase_23 AC 14 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 9 ms
5,376 KB
testcase_26 AC 61 ms
5,376 KB
testcase_27 AC 36 ms
5,376 KB
testcase_28 AC 4 ms
5,376 KB
testcase_29 AC 25 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <string>
#include <algorithm>
#include <utility>
#include <cmath>
#include <cstdlib>
#include <map>
#include <set>
#include <queue>
#include <vector>
using namespace std;
#define MOD 1000000007

long long modinv(long long a, long long mod) {
    long long b = mod, u = 1, v = 0;
    while (b) {
        long long t = a / b;
        a -= t * b; swap(a, b);
        u -= t * v; swap(u, v);
    }
    u %= mod;
    if (u < 0) u += mod;
    return u;
}

int main() {
    long long N, M; cin >> N >> M; N--;
    vector<long long> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    long long ans = 0;
    long long com = 0;
    for (long long i = N - 1; i >= 0; i--) {
        if (i == N - 1) com = M % MOD;
        else com = (com * ((N - i + M - 1) % MOD) % MOD) * modinv(N - i, MOD) % MOD;
        ans += A[i] * com % MOD;
    }
    cout << ans % MOD << endl;
}
0