結果

問題 No.1102 Remnants
ユーザー milanis48663220milanis48663220
提出日時 2020-07-03 22:06:49
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 855 bytes
コンパイル時間 763 ms
コンパイル使用メモリ 83,772 KB
実行使用メモリ 8,164 KB
最終ジャッジ日時 2024-09-17 02:14:47
合計ジャッジ時間 2,824 ms
ジャッジサーバーID
(参考情報)
judge2 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 77 ms
7,424 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 101 ms
8,164 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 AC 6 ms
6,940 KB
testcase_10 AC 3 ms
6,940 KB
testcase_11 AC 5 ms
6,940 KB
testcase_12 AC 6 ms
6,940 KB
testcase_13 AC 5 ms
6,940 KB
testcase_14 AC 44 ms
6,940 KB
testcase_15 AC 34 ms
6,940 KB
testcase_16 AC 88 ms
7,908 KB
testcase_17 AC 83 ms
7,780 KB
testcase_18 AC 87 ms
7,552 KB
testcase_19 AC 29 ms
6,944 KB
testcase_20 AC 10 ms
6,944 KB
testcase_21 AC 51 ms
6,944 KB
testcase_22 AC 73 ms
7,268 KB
testcase_23 AC 56 ms
6,940 KB
testcase_24 AC 40 ms
6,940 KB
testcase_25 AC 88 ms
7,780 KB
testcase_26 AC 6 ms
6,944 KB
testcase_27 AC 22 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>

using namespace std;
typedef long long ll;
const ll MOD = 1000000007;

ll N, K;
ll A[200000];
ll cum_sum[200001];

ll inv(ll n){
    if(n == 1) return 1;
    else return MOD-inv(MOD%n)*(MOD/n)%MOD;
}

ll cnt[200005];

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    cin >> N >> K;
    for(int i = 0; i < N; i++) cin >> A[i];
    for(int i = 0; i < N; i++) cum_sum[i+1] = cum_sum[i]+A[i];
    ll ans = 0;
    cnt[1] = 1;
    for(int i = 2; i <= N; i++){
        cnt[i] = (((cnt[i-1]*(K+i-1))%MOD)*inv(i-1))%MOD;
    }
    for(int i = 1; i <= N; i++){
        ll c = (cnt[i]*cnt[N-i+1])%MOD;
        ans += (A[i-1]*c)%MOD;
        ans %= MOD;
    }
    cout << ans << endl;
}
0