結果

問題 No.797 Noelちゃんとピラミッド
ユーザー rlangevinrlangevin
提出日時 2023-01-30 00:17:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 100,136 KB
最終ジャッジ日時 2024-06-29 19:10:27
合計ジャッジ時間 7,965 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
66,340 KB
testcase_01 AC 56 ms
66,596 KB
testcase_02 AC 52 ms
67,436 KB
testcase_03 AC 89 ms
100,028 KB
testcase_04 AC 91 ms
100,012 KB
testcase_05 AC 90 ms
100,028 KB
testcase_06 AC 91 ms
100,028 KB
testcase_07 AC 92 ms
99,772 KB
testcase_08 AC 93 ms
99,948 KB
testcase_09 AC 93 ms
100,008 KB
testcase_10 AC 92 ms
99,696 KB
testcase_11 AC 94 ms
99,764 KB
testcase_12 AC 94 ms
100,004 KB
testcase_13 AC 91 ms
99,960 KB
testcase_14 AC 91 ms
99,820 KB
testcase_15 AC 94 ms
100,000 KB
testcase_16 AC 94 ms
99,836 KB
testcase_17 AC 94 ms
100,080 KB
testcase_18 AC 93 ms
99,964 KB
testcase_19 AC 92 ms
100,136 KB
testcase_20 AC 93 ms
99,972 KB
testcase_21 AC 92 ms
100,012 KB
testcase_22 AC 90 ms
100,000 KB
testcase_23 AC 82 ms
94,364 KB
testcase_24 AC 63 ms
77,236 KB
testcase_25 AC 76 ms
91,004 KB
testcase_26 AC 75 ms
89,416 KB
testcase_27 AC 92 ms
99,732 KB
testcase_28 AC 90 ms
97,528 KB
testcase_29 AC 61 ms
74,268 KB
testcase_30 AC 64 ms
77,236 KB
testcase_31 AC 84 ms
94,068 KB
testcase_32 AC 65 ms
80,484 KB
testcase_33 AC 77 ms
90,404 KB
testcase_34 AC 67 ms
84,332 KB
testcase_35 AC 92 ms
100,056 KB
testcase_36 AC 60 ms
73,392 KB
testcase_37 AC 87 ms
97,832 KB
testcase_38 AC 90 ms
99,504 KB
testcase_39 AC 76 ms
90,108 KB
testcase_40 AC 60 ms
73,972 KB
testcase_41 AC 60 ms
75,796 KB
testcase_42 AC 74 ms
89,008 KB
testcase_43 AC 54 ms
66,596 KB
testcase_44 AC 53 ms
67,424 KB
testcase_45 AC 52 ms
66,560 KB
testcase_46 AC 53 ms
67,260 KB
testcase_47 AC 53 ms
67,692 KB
testcase_48 AC 54 ms
66,284 KB
testcase_49 AC 53 ms
67,084 KB
testcase_50 AC 52 ms
67,208 KB
testcase_51 AC 52 ms
66,576 KB
testcase_52 AC 53 ms
66,936 KB
testcase_53 AC 54 ms
67,896 KB
testcase_54 AC 53 ms
66,264 KB
testcase_55 AC 53 ms
68,372 KB
testcase_56 AC 52 ms
66,796 KB
testcase_57 AC 52 ms
66,388 KB
testcase_58 AC 52 ms
66,632 KB
testcase_59 AC 52 ms
67,896 KB
testcase_60 AC 52 ms
66,356 KB
testcase_61 AC 53 ms
66,592 KB
testcase_62 AC 53 ms
66,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
mod = 10 ** 9 + 7

n = 505050

fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod

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