結果

問題 No.797 Noelちゃんとピラミッド
ユーザー ronpooronpoo
提出日時 2023-08-29 16:45:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 89 ms / 2,000 ms
コード長 585 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 82,256 KB
実行使用メモリ 98,100 KB
最終ジャッジ日時 2024-12-30 23:39:32
合計ジャッジ時間 6,827 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
60,924 KB
testcase_01 AC 50 ms
60,588 KB
testcase_02 AC 50 ms
61,444 KB
testcase_03 AC 87 ms
96,332 KB
testcase_04 AC 87 ms
97,524 KB
testcase_05 AC 86 ms
97,144 KB
testcase_06 AC 88 ms
97,756 KB
testcase_07 AC 88 ms
96,548 KB
testcase_08 AC 87 ms
96,540 KB
testcase_09 AC 88 ms
97,484 KB
testcase_10 AC 87 ms
97,896 KB
testcase_11 AC 86 ms
97,092 KB
testcase_12 AC 87 ms
97,012 KB
testcase_13 AC 87 ms
96,944 KB
testcase_14 AC 88 ms
97,092 KB
testcase_15 AC 87 ms
97,296 KB
testcase_16 AC 88 ms
96,388 KB
testcase_17 AC 87 ms
96,980 KB
testcase_18 AC 87 ms
97,376 KB
testcase_19 AC 87 ms
98,100 KB
testcase_20 AC 86 ms
97,360 KB
testcase_21 AC 89 ms
97,556 KB
testcase_22 AC 86 ms
96,892 KB
testcase_23 AC 81 ms
87,716 KB
testcase_24 AC 65 ms
70,496 KB
testcase_25 AC 75 ms
85,240 KB
testcase_26 AC 73 ms
83,112 KB
testcase_27 AC 88 ms
96,564 KB
testcase_28 AC 82 ms
92,860 KB
testcase_29 AC 58 ms
68,520 KB
testcase_30 AC 62 ms
71,764 KB
testcase_31 AC 78 ms
87,636 KB
testcase_32 AC 65 ms
73,936 KB
testcase_33 AC 77 ms
83,588 KB
testcase_34 AC 68 ms
78,228 KB
testcase_35 AC 87 ms
97,152 KB
testcase_36 AC 58 ms
67,204 KB
testcase_37 AC 83 ms
92,868 KB
testcase_38 AC 86 ms
96,580 KB
testcase_39 AC 74 ms
84,480 KB
testcase_40 AC 58 ms
66,920 KB
testcase_41 AC 59 ms
70,252 KB
testcase_42 AC 71 ms
81,524 KB
testcase_43 AC 49 ms
61,476 KB
testcase_44 AC 50 ms
62,004 KB
testcase_45 AC 50 ms
61,196 KB
testcase_46 AC 52 ms
62,196 KB
testcase_47 AC 51 ms
61,268 KB
testcase_48 AC 51 ms
60,484 KB
testcase_49 AC 52 ms
61,944 KB
testcase_50 AC 50 ms
61,308 KB
testcase_51 AC 50 ms
62,040 KB
testcase_52 AC 51 ms
61,436 KB
testcase_53 AC 50 ms
60,584 KB
testcase_54 AC 50 ms
60,924 KB
testcase_55 AC 50 ms
60,592 KB
testcase_56 AC 50 ms
60,648 KB
testcase_57 AC 49 ms
60,436 KB
testcase_58 AC 49 ms
60,920 KB
testcase_59 AC 49 ms
60,564 KB
testcase_60 AC 53 ms
60,988 KB
testcase_61 AC 51 ms
60,812 KB
testcase_62 AC 50 ms
60,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

def factorial_inverse(n, mod):
    fac = [1] * (n+1)
    inv = [1] * (n+1)
    finv = [1] * (n+1)
    
    for i in range(2, n+1):
        fac[i] = fac[i-1] * i % mod
        inv[i] = mod - inv[mod%i] * (mod//i) % mod
        finv[i] = finv[i-1] * inv[i] % mod
        
    return fac, finv

fac, finv = factorial_inverse(10**5+100, MOD)
p = []
n = N-1
for i in range(N):
    p.append(fac[n] * (finv[i] * finv[n - i] % MOD) % MOD)

ans = 0
for i in range(N):
    ans += (A[i] * p[i]) % MOD
    ans %= MOD
print(ans)
0