結果

問題 No.797 Noelちゃんとピラミッド
ユーザー pianonekopianoneko
提出日時 2019-03-19 18:07:12
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 1,538 bytes
コンパイル時間 1,650 ms
コンパイル使用メモリ 169,236 KB
実行使用メモリ 5,888 KB
最終ジャッジ日時 2024-09-14 02:31:44
合計ジャッジ時間 6,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 21 ms
5,248 KB
testcase_01 AC 20 ms
5,376 KB
testcase_02 AC 20 ms
5,376 KB
testcase_03 AC 60 ms
5,632 KB
testcase_04 AC 60 ms
5,888 KB
testcase_05 AC 60 ms
5,632 KB
testcase_06 AC 60 ms
5,632 KB
testcase_07 AC 61 ms
5,632 KB
testcase_08 AC 60 ms
5,760 KB
testcase_09 AC 60 ms
5,504 KB
testcase_10 AC 61 ms
5,504 KB
testcase_11 AC 60 ms
5,504 KB
testcase_12 AC 61 ms
5,632 KB
testcase_13 AC 60 ms
5,632 KB
testcase_14 AC 61 ms
5,632 KB
testcase_15 AC 61 ms
5,504 KB
testcase_16 AC 60 ms
5,632 KB
testcase_17 AC 60 ms
5,632 KB
testcase_18 AC 60 ms
5,632 KB
testcase_19 AC 61 ms
5,504 KB
testcase_20 AC 60 ms
5,760 KB
testcase_21 AC 59 ms
5,632 KB
testcase_22 AC 60 ms
5,632 KB
testcase_23 AC 49 ms
5,376 KB
testcase_24 AC 29 ms
5,376 KB
testcase_25 AC 45 ms
5,376 KB
testcase_26 AC 43 ms
5,376 KB
testcase_27 AC 59 ms
5,504 KB
testcase_28 AC 55 ms
5,504 KB
testcase_29 AC 25 ms
5,376 KB
testcase_30 AC 29 ms
5,376 KB
testcase_31 AC 48 ms
5,376 KB
testcase_32 AC 32 ms
5,376 KB
testcase_33 AC 44 ms
5,376 KB
testcase_34 AC 37 ms
5,376 KB
testcase_35 AC 60 ms
5,632 KB
testcase_36 AC 24 ms
5,376 KB
testcase_37 AC 56 ms
5,760 KB
testcase_38 AC 59 ms
5,504 KB
testcase_39 AC 43 ms
5,376 KB
testcase_40 AC 24 ms
5,376 KB
testcase_41 AC 26 ms
5,376 KB
testcase_42 AC 42 ms
5,376 KB
testcase_43 AC 20 ms
5,376 KB
testcase_44 AC 20 ms
5,376 KB
testcase_45 AC 20 ms
5,376 KB
testcase_46 AC 20 ms
5,376 KB
testcase_47 AC 20 ms
5,376 KB
testcase_48 AC 20 ms
5,376 KB
testcase_49 AC 21 ms
5,376 KB
testcase_50 AC 20 ms
5,376 KB
testcase_51 AC 20 ms
5,376 KB
testcase_52 AC 20 ms
5,376 KB
testcase_53 AC 20 ms
5,376 KB
testcase_54 AC 20 ms
5,376 KB
testcase_55 AC 20 ms
5,376 KB
testcase_56 AC 20 ms
5,376 KB
testcase_57 AC 20 ms
5,376 KB
testcase_58 AC 20 ms
5,376 KB
testcase_59 AC 20 ms
5,376 KB
testcase_60 AC 20 ms
5,376 KB
testcase_61 AC 21 ms
5,376 KB
testcase_62 AC 20 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define REP(i, n) for (int i = 0; i < n; i++)
#define ALL(obj) obj.begin(), obj.end()

const int iINF = 1e9;
const long long llINF = 1e18;
const int MOD = 1e9 + 7;

using namespace std;

const int MAX = 100000;

vector<long long> fac(MAX + 1), inverseFac(MAX + 1);

long long modPow(long long x, long long n) {
    long long ans = 1;
    while (n != 0) {
        if (n & 1) ans = ans * x % MOD;
        x = x * x % MOD;
        n = n >> 1;
    }
    return ans;
}

long long comb(long long a, long long b) {
    if (a == 0 && b == 0) return 1;
    if (a < b || a < 0) return 0;
    long long tmp = inverseFac[a - b] * inverseFac[b] % MOD;
    return tmp * fac[a] % MOD;
}

long long perm(long long a, long long b) {
    if (a < b) return 0;
    long long tmp = inverseFac[a - b] % MOD;
    return tmp * fac[a] % MOD;
}

long long dupc(long long a, long long b) {
    if (a == 0 && b == 0) return 1;
    if (a < 0 || b == 0) return 0;
    long long tmp = inverseFac[a - 1] * inverseFac[b] % MOD;
    return tmp * fac[a + b - 1] % MOD;
}

void init() {
    fac[0] = 1;
    inverseFac[0] = 1;
    for (long long i = 0; i < MAX; i++) {
        fac[i + 1] = fac[i] * (i + 1) % MOD;
        inverseFac[i + 1] = inverseFac[i] * modPow(i + 1, MOD - 2) % MOD;
    }
}

int main() {
    int N;
    cin >> N;
    vector<long long> a(N);
    REP(i, N) {
        cin >> a[i];
    }

    init();
    long long ans = 0;
    REP(i, N) {
        ans += comb(N - 1, i) * a[i];
        ans %= MOD;
    }

    cout << ans << endl;
}
0