結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ntudantuda
提出日時 2024-10-20 16:03:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 430 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 94,184 KB
最終ジャッジ日時 2024-10-20 16:03:52
合計ジャッジ時間 7,862 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,692 KB
testcase_01 AC 37 ms
52,988 KB
testcase_02 AC 37 ms
53,280 KB
testcase_03 AC 87 ms
93,612 KB
testcase_04 AC 84 ms
93,932 KB
testcase_05 AC 85 ms
93,860 KB
testcase_06 AC 84 ms
93,924 KB
testcase_07 AC 84 ms
93,908 KB
testcase_08 AC 85 ms
94,028 KB
testcase_09 AC 85 ms
93,748 KB
testcase_10 AC 112 ms
93,760 KB
testcase_11 AC 85 ms
93,908 KB
testcase_12 AC 85 ms
93,904 KB
testcase_13 AC 85 ms
93,860 KB
testcase_14 AC 85 ms
93,692 KB
testcase_15 AC 85 ms
94,184 KB
testcase_16 AC 86 ms
93,752 KB
testcase_17 AC 87 ms
93,860 KB
testcase_18 AC 84 ms
93,904 KB
testcase_19 AC 86 ms
93,808 KB
testcase_20 AC 84 ms
94,060 KB
testcase_21 AC 85 ms
93,692 KB
testcase_22 AC 85 ms
93,784 KB
testcase_23 AC 76 ms
88,076 KB
testcase_24 AC 58 ms
69,712 KB
testcase_25 AC 69 ms
83,708 KB
testcase_26 AC 67 ms
81,668 KB
testcase_27 AC 85 ms
93,640 KB
testcase_28 AC 80 ms
91,532 KB
testcase_29 AC 49 ms
66,520 KB
testcase_30 AC 53 ms
69,780 KB
testcase_31 AC 75 ms
87,812 KB
testcase_32 AC 56 ms
72,620 KB
testcase_33 AC 67 ms
83,556 KB
testcase_34 AC 60 ms
77,656 KB
testcase_35 AC 85 ms
93,636 KB
testcase_36 AC 48 ms
65,176 KB
testcase_37 AC 81 ms
91,476 KB
testcase_38 AC 82 ms
93,368 KB
testcase_39 AC 71 ms
83,384 KB
testcase_40 AC 48 ms
65,408 KB
testcase_41 AC 51 ms
66,888 KB
testcase_42 AC 66 ms
81,724 KB
testcase_43 AC 37 ms
52,392 KB
testcase_44 AC 37 ms
52,532 KB
testcase_45 AC 37 ms
52,740 KB
testcase_46 AC 38 ms
52,536 KB
testcase_47 AC 38 ms
53,272 KB
testcase_48 AC 37 ms
53,608 KB
testcase_49 AC 37 ms
53,008 KB
testcase_50 AC 38 ms
52,956 KB
testcase_51 AC 38 ms
52,884 KB
testcase_52 AC 38 ms
52,460 KB
testcase_53 AC 38 ms
52,608 KB
testcase_54 AC 38 ms
52,952 KB
testcase_55 AC 38 ms
53,196 KB
testcase_56 AC 37 ms
52,836 KB
testcase_57 AC 37 ms
53,356 KB
testcase_58 AC 37 ms
53,176 KB
testcase_59 AC 37 ms
53,560 KB
testcase_60 AC 37 ms
52,956 KB
testcase_61 AC 38 ms
52,124 KB
testcase_62 AC 40 ms
52,796 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10 ** 9 + 7

N = int(input())
A = list(map(int, input().split()))
fact = [1] * (N + 1)
rfact = [1] * (N + 1)
r = 1
for i in range(1, N + 1):
    fact[i] = r = r * i % MOD
rfact[N] = r = pow(fact[N], -1, MOD)
for i in range(N, 0, -1):
    rfact[i - 1] = r = r * i % MOD

def comb(n, k):
    return fact[n] * rfact[k] * rfact[n - k] % MOD

ans = 0
for i in range(N):
    ans += A[i] * comb(N - 1, i)
    ans %= MOD
print(ans)
0