結果

問題 No.797 Noelちゃんとピラミッド
ユーザー neterukunneterukun
提出日時 2019-05-06 04:06:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 805 bytes
コンパイル時間 165 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 22,848 KB
最終ジャッジ日時 2024-06-26 11:15:52
合計ジャッジ時間 21,597 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,880 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 31 ms
10,880 KB
testcase_03 AC 569 ms
22,656 KB
testcase_04 AC 565 ms
22,720 KB
testcase_05 AC 570 ms
22,660 KB
testcase_06 AC 567 ms
22,660 KB
testcase_07 AC 562 ms
22,728 KB
testcase_08 AC 562 ms
22,656 KB
testcase_09 AC 570 ms
22,656 KB
testcase_10 AC 569 ms
22,660 KB
testcase_11 AC 563 ms
22,848 KB
testcase_12 AC 559 ms
22,720 KB
testcase_13 AC 566 ms
22,660 KB
testcase_14 AC 573 ms
22,660 KB
testcase_15 AC 565 ms
22,720 KB
testcase_16 AC 565 ms
22,656 KB
testcase_17 AC 565 ms
22,652 KB
testcase_18 AC 566 ms
22,768 KB
testcase_19 AC 565 ms
22,660 KB
testcase_20 AC 567 ms
22,728 KB
testcase_21 AC 572 ms
22,656 KB
testcase_22 AC 567 ms
22,788 KB
testcase_23 AC 415 ms
19,216 KB
testcase_24 AC 150 ms
13,676 KB
testcase_25 AC 346 ms
18,032 KB
testcase_26 AC 330 ms
17,456 KB
testcase_27 AC 551 ms
22,248 KB
testcase_28 AC 503 ms
21,168 KB
testcase_29 AC 97 ms
12,288 KB
testcase_30 AC 141 ms
13,660 KB
testcase_31 AC 413 ms
19,296 KB
testcase_32 AC 192 ms
14,864 KB
testcase_33 AC 343 ms
17,744 KB
testcase_34 AC 249 ms
15,644 KB
testcase_35 AC 566 ms
22,656 KB
testcase_36 AC 85 ms
12,032 KB
testcase_37 AC 503 ms
21,024 KB
testcase_38 AC 521 ms
21,724 KB
testcase_39 AC 337 ms
17,512 KB
testcase_40 AC 85 ms
12,032 KB
testcase_41 AC 117 ms
12,660 KB
testcase_42 AC 331 ms
17,388 KB
testcase_43 AC 31 ms
10,880 KB
testcase_44 AC 32 ms
10,752 KB
testcase_45 AC 30 ms
10,752 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 30 ms
10,880 KB
testcase_49 AC 30 ms
10,880 KB
testcase_50 AC 30 ms
10,880 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 30 ms
10,752 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 29 ms
10,880 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 30 ms
10,752 KB
testcase_57 AC 31 ms
10,752 KB
testcase_58 AC 30 ms
10,880 KB
testcase_59 AC 31 ms
10,752 KB
testcase_60 AC 31 ms
10,752 KB
testcase_61 AC 30 ms
10,880 KB
testcase_62 AC 30 ms
10,880 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#Combinationクラス
class Combination:

    def __init__(self, n, MOD):
        self.fact = [1]
        for i in range(1, n + 1):
            self.fact.append(self.fact[-1] * i % MOD)
        self.inv_fact = [pow(self.fact[i] ,MOD - 2 ,MOD) for i in range(n + 1)]
        self.MOD = MOD

    #i!を求める
    def factorial(self, i):
        return self.fact[i]

    #k!の逆元を求める
    def inverse_factorial(self, i):
        return self.inv_fact[i]
         
    #k_C_rを求める
    def combination(self, i, j):
        return (self.fact[i] * self.inv_fact[i - j] * self.inv_fact[j]) % self.MOD

n = int(input())
a = list(map(int, input().split()))
MOD = 10**9 + 7
comb = Combination(n, MOD)
ans = 0
for i in range(n):
    ans += comb.combination(n-1, i) * a[i]
    ans %= MOD
print(ans)
0