結果

問題 No.1102 Remnants
ユーザー coco18000coco18000
提出日時 2020-07-03 21:58:09
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 1,071 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 168,448 KB
実行使用メモリ 8,160 KB
最終ジャッジ日時 2024-09-17 00:45:00
合計ジャッジ時間 3,068 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,816 KB
testcase_01 AC 2 ms
7,520 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,944 KB
testcase_05 AC 56 ms
7,800 KB
testcase_06 AC 12 ms
6,940 KB
testcase_07 AC 71 ms
8,160 KB
testcase_08 AC 4 ms
6,944 KB
testcase_09 AC 5 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 4 ms
6,944 KB
testcase_12 AC 5 ms
6,940 KB
testcase_13 AC 5 ms
6,944 KB
testcase_14 AC 32 ms
6,940 KB
testcase_15 AC 27 ms
6,940 KB
testcase_16 AC 64 ms
7,800 KB
testcase_17 AC 61 ms
7,524 KB
testcase_18 AC 68 ms
7,728 KB
testcase_19 AC 25 ms
7,516 KB
testcase_20 AC 9 ms
6,940 KB
testcase_21 AC 38 ms
6,940 KB
testcase_22 AC 54 ms
7,388 KB
testcase_23 AC 43 ms
6,948 KB
testcase_24 AC 30 ms
6,948 KB
testcase_25 AC 65 ms
7,904 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 18 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

typedef long long int ll;
typedef pair<ll, ll> pll;

#define FOR(i, n, m) for(ll (i)=(m);(i)<(n);++(i))
#define REP(i, n) FOR(i,n,0)
#define OF64 std::setprecision(10)

const ll MOD = 1000000007;
const ll INF = (ll) 1e15;

ll A[200005];
ll C[200005];
ll I[200005];

ll modpow(ll n, ll r) {
    ll ret = 1;
    ll p = n;
    while (r > 0) {
        if (r & 1)
            ret = (ret * p) % MOD;
        p = (p * p) % MOD;
        r /= 2;
    }
    return ret;
}

ll cmb(ll r) {
    return C[r] * modpow(I[r], MOD - 2) % MOD;
}

int main() {
    cin.tie(0);
    ios::sync_with_stdio(false);
    ll N, K;
    cin >> N >> K;
    REP(i, N) {
        cin >> A[i];
    }

    I[0] = 1;
    C[0] = 1;
    REP(i, N) {
        I[i + 1] = I[i] * (i + 1) % MOD;
        C[i + 1] = C[i] * (K + i + 1) % MOD;
    }

    ll ans = 0;
    REP(i, N) {
        ll l = i + 1;
        ll r = N - i;
        ll c = cmb(l - 1) * cmb(r - 1) % MOD;
        ans += (A[i] * c) % MOD;
        ans %= MOD;
    }
    cout << ans << endl;
    return 0;
}
0