結果

問題 No.797 Noelちゃんとピラミッド
ユーザー TakoKurageTakoKurage
提出日時 2019-03-15 22:01:35
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 316 ms / 2,000 ms
コード長 593 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 27,624 KB
最終ジャッジ日時 2024-07-01 20:58:19
合計ジャッジ時間 12,566 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 313 ms
26,864 KB
testcase_04 AC 310 ms
26,984 KB
testcase_05 AC 307 ms
27,116 KB
testcase_06 AC 305 ms
26,860 KB
testcase_07 AC 305 ms
26,988 KB
testcase_08 AC 306 ms
26,988 KB
testcase_09 AC 315 ms
27,624 KB
testcase_10 AC 306 ms
26,988 KB
testcase_11 AC 314 ms
26,988 KB
testcase_12 AC 310 ms
27,052 KB
testcase_13 AC 313 ms
27,372 KB
testcase_14 AC 314 ms
26,984 KB
testcase_15 AC 307 ms
26,992 KB
testcase_16 AC 304 ms
27,052 KB
testcase_17 AC 309 ms
27,496 KB
testcase_18 AC 310 ms
27,052 KB
testcase_19 AC 307 ms
26,984 KB
testcase_20 AC 316 ms
27,180 KB
testcase_21 AC 314 ms
26,856 KB
testcase_22 AC 316 ms
26,864 KB
testcase_23 AC 230 ms
23,296 KB
testcase_24 AC 91 ms
14,804 KB
testcase_25 AC 193 ms
20,612 KB
testcase_26 AC 183 ms
19,944 KB
testcase_27 AC 304 ms
27,364 KB
testcase_28 AC 269 ms
26,392 KB
testcase_29 AC 64 ms
12,928 KB
testcase_30 AC 85 ms
14,652 KB
testcase_31 AC 227 ms
22,868 KB
testcase_32 AC 110 ms
16,000 KB
testcase_33 AC 195 ms
21,656 KB
testcase_34 AC 140 ms
18,060 KB
testcase_35 AC 302 ms
27,372 KB
testcase_36 AC 57 ms
12,544 KB
testcase_37 AC 271 ms
25,688 KB
testcase_38 AC 280 ms
26,252 KB
testcase_39 AC 184 ms
20,732 KB
testcase_40 AC 56 ms
12,416 KB
testcase_41 AC 72 ms
13,696 KB
testcase_42 AC 179 ms
19,896 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 31 ms
10,752 KB
testcase_45 AC 30 ms
10,624 KB
testcase_46 AC 30 ms
10,752 KB
testcase_47 AC 29 ms
10,752 KB
testcase_48 AC 29 ms
10,752 KB
testcase_49 AC 30 ms
10,752 KB
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 31 ms
10,624 KB
testcase_52 AC 29 ms
10,752 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 31 ms
10,752 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 30 ms
10,752 KB
testcase_57 AC 30 ms
10,752 KB
testcase_58 AC 30 ms
10,752 KB
testcase_59 AC 30 ms
10,880 KB
testcase_60 AC 30 ms
10,624 KB
testcase_61 AC 30 ms
10,880 KB
testcase_62 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(i) for i in input().split()]

mod = 10 ** 9 + 7


def cmb(n, r, mod):
    if (r < 0 or r > n):
        return 0
    r = min(r, n-r)
    return g1[n] * g2[r] * g2[n-r] % mod


g1 = [1, 1]  # 元テーブル
g2 = [1, 1]  # 逆元テーブル
inverse = [0, 1]  # 逆元テーブル計算用テーブル

for i in range(2, N + 1):
    g1.append((g1[-1] * i) % mod)
    inverse.append((-inverse[mod % i] * (mod//i)) % mod)
    g2.append((g2[-1] * inverse[-1]) % mod)


result = 0
for i, ai in enumerate(A):
    result += ai * cmb(N - 1, i, mod) % mod

print(result % mod)
0