結果

問題 No.797 Noelちゃんとピラミッド
ユーザー pasoconhoshiipasoconhoshii
提出日時 2019-03-15 22:39:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 801 bytes
コンパイル時間 102 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,668 KB
最終ジャッジ日時 2024-07-01 21:16:42
合計ジャッジ時間 13,071 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 344 ms
26,316 KB
testcase_04 AC 326 ms
26,188 KB
testcase_05 AC 324 ms
26,312 KB
testcase_06 AC 335 ms
26,188 KB
testcase_07 AC 328 ms
26,188 KB
testcase_08 AC 332 ms
26,316 KB
testcase_09 AC 333 ms
26,316 KB
testcase_10 AC 329 ms
26,192 KB
testcase_11 AC 333 ms
26,316 KB
testcase_12 AC 326 ms
26,184 KB
testcase_13 AC 328 ms
26,184 KB
testcase_14 AC 320 ms
26,188 KB
testcase_15 AC 326 ms
26,188 KB
testcase_16 AC 334 ms
26,440 KB
testcase_17 AC 323 ms
26,312 KB
testcase_18 AC 324 ms
26,320 KB
testcase_19 AC 329 ms
26,312 KB
testcase_20 AC 321 ms
26,376 KB
testcase_21 AC 323 ms
26,188 KB
testcase_22 AC 323 ms
26,208 KB
testcase_23 AC 244 ms
21,732 KB
testcase_24 AC 93 ms
14,192 KB
testcase_25 AC 206 ms
20,252 KB
testcase_26 AC 204 ms
19,444 KB
testcase_27 AC 318 ms
26,668 KB
testcase_28 AC 290 ms
24,364 KB
testcase_29 AC 68 ms
12,672 KB
testcase_30 AC 91 ms
13,916 KB
testcase_31 AC 244 ms
21,924 KB
testcase_32 AC 118 ms
15,504 KB
testcase_33 AC 208 ms
19,932 KB
testcase_34 AC 151 ms
17,200 KB
testcase_35 AC 326 ms
26,184 KB
testcase_36 AC 61 ms
12,288 KB
testcase_37 AC 289 ms
24,912 KB
testcase_38 AC 301 ms
24,964 KB
testcase_39 AC 202 ms
19,844 KB
testcase_40 AC 60 ms
12,288 KB
testcase_41 AC 77 ms
13,168 KB
testcase_42 AC 194 ms
19,440 KB
testcase_43 AC 30 ms
10,624 KB
testcase_44 AC 30 ms
10,752 KB
testcase_45 AC 30 ms
10,624 KB
testcase_46 AC 31 ms
10,752 KB
testcase_47 AC 30 ms
10,752 KB
testcase_48 AC 30 ms
10,624 KB
testcase_49 AC 30 ms
10,624 KB
testcase_50 AC 29 ms
10,752 KB
testcase_51 AC 30 ms
10,496 KB
testcase_52 AC 30 ms
10,624 KB
testcase_53 AC 30 ms
10,624 KB
testcase_54 AC 30 ms
10,752 KB
testcase_55 AC 30 ms
10,496 KB
testcase_56 AC 30 ms
10,624 KB
testcase_57 AC 30 ms
10,752 KB
testcase_58 AC 29 ms
10,752 KB
testcase_59 AC 30 ms
10,624 KB
testcase_60 AC 30 ms
10,624 KB
testcase_61 AC 30 ms
10,496 KB
testcase_62 AC 32 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

mod = 10**9+7
factorial = [1]
for n in range(1, N+1):
    factorial.append( factorial[n-1] * n % mod)

invFact = [0] * (N+1)
invFact[N] = pow(factorial[N], mod-2, mod)

for n in range(N-2+1, -1, -1):
    invFact[n] = invFact[n+1] * (n+1) % mod

def combi(n,m):
    try:
        return factorial[n] * invFact[m] * invFact[n-m] % mod
    except:
        print(n, m)

# print(factorial, invFact)
coeff = [0] * (N)
for i in range(N):
    # coeff[i] = combi( max(N-i-1, i) , N-1 - max(N-i-1,i))
    coeff[i]  =  factorial[N-1] * invFact[  max(N-i-1, i) ] * invFact[ N-1 - max(N-i-1,i)]  % mod
    # print(i, max(N-i-1, i), N-1-max(N-i-1,i), coeff[i])

# print(coeff)
ans = 0

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