結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
60,724 KB
testcase_01 AC 45 ms
61,124 KB
testcase_02 AC 45 ms
60,192 KB
testcase_03 AC 78 ms
96,580 KB
testcase_04 AC 76 ms
97,096 KB
testcase_05 AC 76 ms
97,768 KB
testcase_06 AC 75 ms
98,256 KB
testcase_07 AC 75 ms
97,076 KB
testcase_08 AC 76 ms
97,004 KB
testcase_09 AC 75 ms
96,852 KB
testcase_10 AC 75 ms
96,860 KB
testcase_11 AC 76 ms
97,216 KB
testcase_12 AC 77 ms
98,272 KB
testcase_13 AC 77 ms
96,968 KB
testcase_14 AC 78 ms
97,420 KB
testcase_15 AC 77 ms
98,564 KB
testcase_16 AC 77 ms
97,272 KB
testcase_17 AC 76 ms
97,488 KB
testcase_18 AC 76 ms
97,408 KB
testcase_19 AC 74 ms
97,712 KB
testcase_20 AC 75 ms
96,732 KB
testcase_21 AC 75 ms
97,328 KB
testcase_22 AC 75 ms
97,360 KB
testcase_23 AC 70 ms
87,520 KB
testcase_24 AC 56 ms
71,968 KB
testcase_25 AC 67 ms
84,488 KB
testcase_26 AC 63 ms
83,120 KB
testcase_27 AC 77 ms
97,540 KB
testcase_28 AC 74 ms
93,376 KB
testcase_29 AC 54 ms
68,492 KB
testcase_30 AC 57 ms
71,132 KB
testcase_31 AC 70 ms
88,620 KB
testcase_32 AC 60 ms
74,216 KB
testcase_33 AC 67 ms
84,356 KB
testcase_34 AC 58 ms
78,716 KB
testcase_35 AC 75 ms
97,008 KB
testcase_36 AC 51 ms
67,452 KB
testcase_37 AC 73 ms
93,064 KB
testcase_38 AC 75 ms
96,068 KB
testcase_39 AC 65 ms
85,000 KB
testcase_40 AC 51 ms
67,820 KB
testcase_41 AC 54 ms
68,904 KB
testcase_42 AC 63 ms
82,308 KB
testcase_43 AC 44 ms
61,320 KB
testcase_44 AC 43 ms
60,844 KB
testcase_45 AC 43 ms
60,652 KB
testcase_46 AC 45 ms
61,328 KB
testcase_47 AC 44 ms
60,660 KB
testcase_48 AC 44 ms
61,184 KB
testcase_49 AC 45 ms
60,660 KB
testcase_50 AC 45 ms
61,376 KB
testcase_51 AC 50 ms
60,836 KB
testcase_52 AC 47 ms
61,268 KB
testcase_53 AC 49 ms
61,656 KB
testcase_54 AC 45 ms
60,932 KB
testcase_55 AC 45 ms
62,180 KB
testcase_56 AC 45 ms
61,788 KB
testcase_57 AC 44 ms
61,220 KB
testcase_58 AC 44 ms
61,916 KB
testcase_59 AC 44 ms
61,848 KB
testcase_60 AC 43 ms
60,452 KB
testcase_61 AC 45 ms
61,328 KB
testcase_62 AC 43 ms
60,756 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