結果

問題 No.797 Noelちゃんとピラミッド
ユーザー 👑 rin204rin204
提出日時 2020-08-18 11:27:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 244 ms / 2,000 ms
コード長 570 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 29,392 KB
最終ジャッジ日時 2024-10-12 02:34:07
合計ジャッジ時間 11,340 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,496 KB
testcase_03 AC 244 ms
29,384 KB
testcase_04 AC 235 ms
29,128 KB
testcase_05 AC 237 ms
29,264 KB
testcase_06 AC 235 ms
29,388 KB
testcase_07 AC 232 ms
29,260 KB
testcase_08 AC 233 ms
29,136 KB
testcase_09 AC 236 ms
29,256 KB
testcase_10 AC 232 ms
29,388 KB
testcase_11 AC 232 ms
29,384 KB
testcase_12 AC 234 ms
29,128 KB
testcase_13 AC 239 ms
29,260 KB
testcase_14 AC 230 ms
29,132 KB
testcase_15 AC 233 ms
29,132 KB
testcase_16 AC 234 ms
29,384 KB
testcase_17 AC 235 ms
29,260 KB
testcase_18 AC 235 ms
29,140 KB
testcase_19 AC 233 ms
29,388 KB
testcase_20 AC 238 ms
29,392 KB
testcase_21 AC 236 ms
29,260 KB
testcase_22 AC 238 ms
29,388 KB
testcase_23 AC 176 ms
23,620 KB
testcase_24 AC 76 ms
14,484 KB
testcase_25 AC 152 ms
21,884 KB
testcase_26 AC 147 ms
21,264 KB
testcase_27 AC 227 ms
28,644 KB
testcase_28 AC 208 ms
27,084 KB
testcase_29 AC 56 ms
12,800 KB
testcase_30 AC 72 ms
14,516 KB
testcase_31 AC 180 ms
23,820 KB
testcase_32 AC 90 ms
16,124 KB
testcase_33 AC 149 ms
21,304 KB
testcase_34 AC 113 ms
18,196 KB
testcase_35 AC 234 ms
28,996 KB
testcase_36 AC 51 ms
12,544 KB
testcase_37 AC 207 ms
26,868 KB
testcase_38 AC 216 ms
27,628 KB
testcase_39 AC 147 ms
21,288 KB
testcase_40 AC 52 ms
12,416 KB
testcase_41 AC 63 ms
13,564 KB
testcase_42 AC 142 ms
20,944 KB
testcase_43 AC 31 ms
10,496 KB
testcase_44 AC 31 ms
10,496 KB
testcase_45 AC 30 ms
10,368 KB
testcase_46 AC 31 ms
10,496 KB
testcase_47 AC 30 ms
10,496 KB
testcase_48 AC 30 ms
10,624 KB
testcase_49 AC 31 ms
10,368 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 30 ms
10,496 KB
testcase_52 AC 31 ms
10,368 KB
testcase_53 AC 30 ms
10,624 KB
testcase_54 AC 30 ms
10,624 KB
testcase_55 AC 31 ms
10,624 KB
testcase_56 AC 30 ms
10,624 KB
testcase_57 AC 31 ms
10,624 KB
testcase_58 AC 31 ms
10,624 KB
testcase_59 AC 30 ms
10,624 KB
testcase_60 AC 30 ms
10,496 KB
testcase_61 AC 31 ms
10,496 KB
testcase_62 AC 30 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
MOD = 10 ** 9 + 7
N = n + 10
fact = [0 for _ in range(N)]
invfact = [0 for _ in range(N)]
fact[0] = 1
for i in range(1, N):
    fact[i] = fact[i - 1] * i % MOD

invfact[N - 1] = pow(fact[N - 1], MOD - 2, MOD)

for i in range(N - 2, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % MOD
def nCk(n, k):
    if k < 0 or n < k:
        return 0
    else:
        return fact[n] * invfact[k] * invfact[n - k] % MOD
        
alst = list(map(int, input().split()))
ans = 0

for i, a in enumerate(alst):
    ans += a * nCk(n - 1, i)
    ans %= MOD
print(ans)
0