結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ysys
提出日時 2019-03-15 22:03:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 22,512 KB
最終ジャッジ日時 2024-07-01 20:59:29
合計ジャッジ時間 9,981 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 29 ms
10,624 KB
testcase_03 AC 234 ms
22,448 KB
testcase_04 AC 228 ms
22,380 KB
testcase_05 AC 233 ms
22,444 KB
testcase_06 AC 232 ms
22,448 KB
testcase_07 AC 230 ms
22,512 KB
testcase_08 AC 235 ms
22,316 KB
testcase_09 AC 230 ms
22,448 KB
testcase_10 AC 231 ms
22,384 KB
testcase_11 AC 235 ms
22,380 KB
testcase_12 AC 232 ms
22,448 KB
testcase_13 AC 240 ms
22,384 KB
testcase_14 AC 228 ms
22,320 KB
testcase_15 AC 243 ms
22,316 KB
testcase_16 AC 233 ms
22,444 KB
testcase_17 AC 232 ms
22,444 KB
testcase_18 AC 229 ms
22,448 KB
testcase_19 AC 229 ms
22,188 KB
testcase_20 AC 225 ms
22,320 KB
testcase_21 AC 227 ms
22,324 KB
testcase_22 AC 227 ms
22,448 KB
testcase_23 AC 172 ms
19,012 KB
testcase_24 AC 77 ms
13,496 KB
testcase_25 AC 148 ms
17,688 KB
testcase_26 AC 144 ms
17,272 KB
testcase_27 AC 220 ms
22,188 KB
testcase_28 AC 213 ms
20,876 KB
testcase_29 AC 55 ms
12,288 KB
testcase_30 AC 72 ms
13,388 KB
testcase_31 AC 171 ms
19,096 KB
testcase_32 AC 91 ms
14,672 KB
testcase_33 AC 145 ms
17,580 KB
testcase_34 AC 109 ms
15,444 KB
testcase_35 AC 224 ms
22,316 KB
testcase_36 AC 50 ms
11,904 KB
testcase_37 AC 203 ms
21,000 KB
testcase_38 AC 215 ms
21,412 KB
testcase_39 AC 145 ms
17,512 KB
testcase_40 AC 50 ms
11,904 KB
testcase_41 AC 63 ms
12,672 KB
testcase_42 AC 139 ms
17,104 KB
testcase_43 AC 31 ms
10,752 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 31 ms
10,752 KB
testcase_46 AC 30 ms
10,624 KB
testcase_47 AC 31 ms
10,624 KB
testcase_48 AC 31 ms
10,624 KB
testcase_49 AC 29 ms
10,752 KB
testcase_50 AC 30 ms
10,752 KB
testcase_51 AC 30 ms
10,752 KB
testcase_52 AC 30 ms
10,752 KB
testcase_53 AC 29 ms
10,624 KB
testcase_54 AC 30 ms
10,624 KB
testcase_55 AC 30 ms
10,752 KB
testcase_56 AC 31 ms
10,752 KB
testcase_57 AC 30 ms
10,624 KB
testcase_58 AC 29 ms
10,752 KB
testcase_59 AC 30 ms
10,752 KB
testcase_60 AC 30 ms
10,752 KB
testcase_61 AC 30 ms
10,624 KB
testcase_62 AC 30 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


def comb(x, y):
    return fact[x] * rfact[x - y] * rfact[y] % MOD


num = 0
for i in range(n):
    num += comb(n - 1, i) * a[i]
    num %= MOD

print(num)
0