結果

問題 No.797 Noelちゃんとピラミッド
ユーザー htkbhtkb
提出日時 2019-03-15 21:36:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 169 ms / 2,000 ms
コード長 878 bytes
コンパイル時間 266 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,360 KB
最終ジャッジ日時 2024-07-01 20:33:12
合計ジャッジ時間 8,413 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 34 ms
10,752 KB
testcase_03 AC 167 ms
23,164 KB
testcase_04 AC 167 ms
23,292 KB
testcase_05 AC 167 ms
23,232 KB
testcase_06 AC 166 ms
23,164 KB
testcase_07 AC 164 ms
23,164 KB
testcase_08 AC 167 ms
23,296 KB
testcase_09 AC 167 ms
23,296 KB
testcase_10 AC 167 ms
23,312 KB
testcase_11 AC 167 ms
23,104 KB
testcase_12 AC 166 ms
23,356 KB
testcase_13 AC 167 ms
23,188 KB
testcase_14 AC 166 ms
23,356 KB
testcase_15 AC 166 ms
23,296 KB
testcase_16 AC 167 ms
23,164 KB
testcase_17 AC 166 ms
23,316 KB
testcase_18 AC 166 ms
23,184 KB
testcase_19 AC 167 ms
23,168 KB
testcase_20 AC 165 ms
23,360 KB
testcase_21 AC 167 ms
23,292 KB
testcase_22 AC 165 ms
23,360 KB
testcase_23 AC 132 ms
19,624 KB
testcase_24 AC 59 ms
13,680 KB
testcase_25 AC 111 ms
18,180 KB
testcase_26 AC 107 ms
17,552 KB
testcase_27 AC 162 ms
23,108 KB
testcase_28 AC 149 ms
21,716 KB
testcase_29 AC 48 ms
12,160 KB
testcase_30 AC 58 ms
13,528 KB
testcase_31 AC 127 ms
19,516 KB
testcase_32 AC 71 ms
14,736 KB
testcase_33 AC 109 ms
18,136 KB
testcase_34 AC 86 ms
15,832 KB
testcase_35 AC 169 ms
23,160 KB
testcase_36 AC 44 ms
11,776 KB
testcase_37 AC 149 ms
21,644 KB
testcase_38 AC 155 ms
22,116 KB
testcase_39 AC 108 ms
17,816 KB
testcase_40 AC 44 ms
11,776 KB
testcase_41 AC 51 ms
12,788 KB
testcase_42 AC 105 ms
17,544 KB
testcase_43 AC 30 ms
10,496 KB
testcase_44 AC 30 ms
10,496 KB
testcase_45 AC 30 ms
10,624 KB
testcase_46 AC 29 ms
10,496 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 ms
10,496 KB
testcase_49 AC 31 ms
10,624 KB
testcase_50 AC 29 ms
10,624 KB
testcase_51 AC 29 ms
10,624 KB
testcase_52 AC 30 ms
10,624 KB
testcase_53 AC 30 ms
10,368 KB
testcase_54 AC 29 ms
10,496 KB
testcase_55 AC 30 ms
10,624 KB
testcase_56 AC 30 ms
10,624 KB
testcase_57 AC 30 ms
10,496 KB
testcase_58 AC 29 ms
10,752 KB
testcase_59 AC 30 ms
10,496 KB
testcase_60 AC 30 ms
10,496 KB
testcase_61 AC 30 ms
10,624 KB
testcase_62 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BigCombination(object):
    __slots__ = ["mod", "factorial", "inverse"]

    def __init__(self, mod: int = 10**9+7, max_n: int = 10**6):
        fac, inv = [1], []
        fac_append, inv_append = fac.append, inv.append

        for i in range(1, max_n+1):
            fac_append(fac[-1] * i % mod)

        inv_append(pow(fac[-1], mod-2, mod))

        for i in range(max_n, 0, -1):
            inv_append(inv[-1] * i % mod)

        self.mod, self.factorial, self.inverse = mod, fac, inv[::-1]

    def get_combination(self, n, r):
        return self.factorial[n] * self.inverse[r] * self.inverse[n-r] % self.mod


if __name__ == "__main__":
    N = int(input())
    a = tuple(map(int, input().split()))
    mod = 10**9+7
    bigcomb = BigCombination(mod, N-1)
    getcomb = bigcomb.get_combination
    print(sum(getcomb(N-1, i)*v % mod for i, v in enumerate(a)) % mod)
0