結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ThetaTheta
提出日時 2024-03-29 13:45:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 163 ms / 2,000 ms
コード長 1,110 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 81,964 KB
実行使用メモリ 105,592 KB
最終ジャッジ日時 2024-09-30 15:02:45
合計ジャッジ時間 9,262 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,400 KB
testcase_01 AC 41 ms
54,784 KB
testcase_02 AC 41 ms
55,040 KB
testcase_03 AC 154 ms
103,624 KB
testcase_04 AC 147 ms
103,716 KB
testcase_05 AC 146 ms
103,104 KB
testcase_06 AC 148 ms
103,700 KB
testcase_07 AC 150 ms
103,488 KB
testcase_08 AC 155 ms
103,620 KB
testcase_09 AC 147 ms
103,480 KB
testcase_10 AC 151 ms
103,432 KB
testcase_11 AC 148 ms
103,556 KB
testcase_12 AC 149 ms
103,496 KB
testcase_13 AC 148 ms
103,564 KB
testcase_14 AC 151 ms
103,712 KB
testcase_15 AC 151 ms
103,572 KB
testcase_16 AC 153 ms
103,104 KB
testcase_17 AC 150 ms
103,448 KB
testcase_18 AC 152 ms
103,492 KB
testcase_19 AC 153 ms
103,492 KB
testcase_20 AC 151 ms
103,368 KB
testcase_21 AC 153 ms
103,420 KB
testcase_22 AC 153 ms
103,836 KB
testcase_23 AC 135 ms
105,496 KB
testcase_24 AC 92 ms
81,920 KB
testcase_25 AC 124 ms
93,716 KB
testcase_26 AC 110 ms
90,992 KB
testcase_27 AC 163 ms
103,432 KB
testcase_28 AC 152 ms
103,548 KB
testcase_29 AC 84 ms
79,488 KB
testcase_30 AC 85 ms
81,920 KB
testcase_31 AC 140 ms
105,592 KB
testcase_32 AC 87 ms
84,076 KB
testcase_33 AC 108 ms
93,084 KB
testcase_34 AC 94 ms
87,424 KB
testcase_35 AC 153 ms
103,228 KB
testcase_36 AC 77 ms
79,104 KB
testcase_37 AC 147 ms
103,520 KB
testcase_38 AC 149 ms
103,372 KB
testcase_39 AC 106 ms
92,688 KB
testcase_40 AC 76 ms
79,104 KB
testcase_41 AC 79 ms
80,956 KB
testcase_42 AC 102 ms
91,228 KB
testcase_43 AC 44 ms
55,168 KB
testcase_44 AC 43 ms
55,296 KB
testcase_45 AC 41 ms
55,552 KB
testcase_46 AC 44 ms
55,168 KB
testcase_47 AC 42 ms
54,656 KB
testcase_48 AC 42 ms
55,296 KB
testcase_49 AC 44 ms
55,424 KB
testcase_50 AC 44 ms
55,296 KB
testcase_51 AC 43 ms
55,552 KB
testcase_52 AC 42 ms
55,296 KB
testcase_53 AC 43 ms
55,168 KB
testcase_54 AC 42 ms
55,168 KB
testcase_55 AC 43 ms
55,296 KB
testcase_56 AC 43 ms
54,912 KB
testcase_57 AC 42 ms
55,808 KB
testcase_58 AC 43 ms
55,552 KB
testcase_59 AC 43 ms
54,656 KB
testcase_60 AC 43 ms
54,656 KB
testcase_61 AC 42 ms
54,528 KB
testcase_62 AC 44 ms
54,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import cache


def COMinit(upper: int,
            mod_: int) -> tuple[list[int],
                                list[int],
                                list[int]]:

    fac = [0 for _ in range(upper)]
    finv = [0 for _ in range(upper)]
    inv = [0 for _ in range(upper)]
    fac[0] = 1
    fac[1] = 1
    finv[0] = 1
    finv[1] = 1
    inv[1] = 1

    for i in range(2, upper):
        fac[i] = (fac[i - 1] * i)
        fac[i] %= mod_
        inv[i] = mod_ - inv[mod_ % i] * (mod_ // i)
        inv[i] %= mod_
        finv[i] = finv[i - 1] * inv[i]
        finv[i] %= mod_

    return fac, finv, inv


def main():
    N = int(input())
    a = list(map(int, input().split()))
    MOD = int(1e9 + 7)

    fac, finv, inv = COMinit(N + 20, MOD)
    c_sum = 0

    @cache
    def com(n: int, k: int) -> int:
        if n < k:
            return 0
        if (n < 0 or k < 0):
            return 0

        return (fac[n] * finv[k] * finv[n - k]) % MOD
    for k in range(N):
        c_sum += com(N - 1, k) * a[k]
        c_sum %= MOD
    print(c_sum)


if __name__ == "__main__":
    main()
0