結果

問題 No.797 Noelちゃんとピラミッド
ユーザー brthyyjpbrthyyjp
提出日時 2020-12-14 10:30:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 484 bytes
コンパイル時間 153 ms
コンパイル使用メモリ 82,912 KB
実行使用メモリ 106,496 KB
最終ジャッジ日時 2024-09-20 00:37:29
合計ジャッジ時間 8,581 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 68 ms
91,016 KB
testcase_01 AC 68 ms
90,772 KB
testcase_02 AC 73 ms
90,992 KB
testcase_03 AC 107 ms
106,028 KB
testcase_04 AC 106 ms
105,964 KB
testcase_05 AC 109 ms
106,496 KB
testcase_06 AC 108 ms
106,236 KB
testcase_07 AC 106 ms
105,968 KB
testcase_08 AC 108 ms
106,140 KB
testcase_09 AC 106 ms
106,368 KB
testcase_10 AC 106 ms
106,176 KB
testcase_11 AC 108 ms
106,148 KB
testcase_12 AC 106 ms
106,444 KB
testcase_13 AC 109 ms
106,496 KB
testcase_14 AC 109 ms
106,176 KB
testcase_15 AC 108 ms
105,964 KB
testcase_16 AC 108 ms
106,272 KB
testcase_17 AC 108 ms
106,152 KB
testcase_18 AC 110 ms
106,224 KB
testcase_19 AC 109 ms
106,236 KB
testcase_20 AC 108 ms
106,112 KB
testcase_21 AC 109 ms
105,964 KB
testcase_22 AC 108 ms
105,964 KB
testcase_23 AC 99 ms
100,944 KB
testcase_24 AC 83 ms
92,840 KB
testcase_25 AC 96 ms
99,440 KB
testcase_26 AC 95 ms
98,432 KB
testcase_27 AC 110 ms
105,932 KB
testcase_28 AC 105 ms
104,120 KB
testcase_29 AC 80 ms
91,608 KB
testcase_30 AC 84 ms
92,872 KB
testcase_31 AC 99 ms
100,968 KB
testcase_32 AC 87 ms
94,524 KB
testcase_33 AC 96 ms
99,480 KB
testcase_34 AC 90 ms
96,772 KB
testcase_35 AC 108 ms
106,080 KB
testcase_36 AC 81 ms
91,476 KB
testcase_37 AC 104 ms
104,576 KB
testcase_38 AC 107 ms
105,668 KB
testcase_39 AC 96 ms
99,460 KB
testcase_40 AC 79 ms
91,668 KB
testcase_41 AC 81 ms
92,104 KB
testcase_42 AC 95 ms
98,384 KB
testcase_43 AC 70 ms
91,156 KB
testcase_44 AC 69 ms
90,816 KB
testcase_45 AC 69 ms
90,748 KB
testcase_46 AC 70 ms
90,752 KB
testcase_47 AC 69 ms
90,932 KB
testcase_48 AC 68 ms
91,028 KB
testcase_49 AC 68 ms
90,888 KB
testcase_50 AC 69 ms
91,120 KB
testcase_51 AC 72 ms
90,872 KB
testcase_52 AC 70 ms
90,932 KB
testcase_53 AC 70 ms
90,616 KB
testcase_54 AC 69 ms
90,840 KB
testcase_55 AC 69 ms
90,824 KB
testcase_56 AC 70 ms
91,076 KB
testcase_57 AC 69 ms
90,776 KB
testcase_58 AC 70 ms
90,928 KB
testcase_59 AC 70 ms
90,844 KB
testcase_60 AC 68 ms
90,964 KB
testcase_61 AC 69 ms
90,876 KB
testcase_62 AC 70 ms
90,884 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A = list(map(int, input().split()))

N = 10**6
mod = 10**9+7
fac = [1]*(N+1)
finv = [1]*(N+1)
for i in range(N):
    fac[i+1] = fac[i] * (i+1) % mod
finv[-1] = pow(fac[-1], mod-2, mod)
for i in reversed(range(N)):
    finv[i] = finv[i+1] * (i+1) % mod

def cmb1(n, r, mod):
    if r <0 or r > n:
        return 0
    r = min(r, n-r)
    return fac[n] * finv[r] * finv[n-r] % mod

ans = 0
for i, a in enumerate(A):
    ans += a*cmb1(n-1, i, mod)
ans %= mod
print(ans)
0