結果

問題 No.797 Noelちゃんとピラミッド
ユーザー YamadaYamada
提出日時 2019-03-16 02:06:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 283 ms / 2,000 ms
コード長 682 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 28,116 KB
最終ジャッジ日時 2024-07-01 22:16:38
合計ジャッジ時間 11,387 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 282 ms
27,604 KB
testcase_04 AC 283 ms
27,664 KB
testcase_05 AC 274 ms
27,728 KB
testcase_06 AC 273 ms
27,728 KB
testcase_07 AC 271 ms
27,824 KB
testcase_08 AC 275 ms
27,536 KB
testcase_09 AC 276 ms
27,724 KB
testcase_10 AC 277 ms
27,856 KB
testcase_11 AC 277 ms
27,600 KB
testcase_12 AC 281 ms
27,604 KB
testcase_13 AC 278 ms
27,728 KB
testcase_14 AC 280 ms
27,536 KB
testcase_15 AC 283 ms
27,728 KB
testcase_16 AC 283 ms
27,680 KB
testcase_17 AC 279 ms
27,600 KB
testcase_18 AC 275 ms
27,668 KB
testcase_19 AC 273 ms
27,980 KB
testcase_20 AC 269 ms
27,588 KB
testcase_21 AC 272 ms
27,788 KB
testcase_22 AC 274 ms
27,348 KB
testcase_23 AC 206 ms
22,424 KB
testcase_24 AC 83 ms
14,424 KB
testcase_25 AC 175 ms
20,540 KB
testcase_26 AC 168 ms
20,144 KB
testcase_27 AC 262 ms
28,116 KB
testcase_28 AC 245 ms
25,136 KB
testcase_29 AC 59 ms
12,672 KB
testcase_30 AC 79 ms
14,444 KB
testcase_31 AC 201 ms
23,280 KB
testcase_32 AC 99 ms
15,980 KB
testcase_33 AC 173 ms
20,724 KB
testcase_34 AC 128 ms
17,740 KB
testcase_35 AC 274 ms
27,788 KB
testcase_36 AC 53 ms
12,288 KB
testcase_37 AC 244 ms
24,940 KB
testcase_38 AC 248 ms
26,056 KB
testcase_39 AC 166 ms
20,408 KB
testcase_40 AC 54 ms
12,288 KB
testcase_41 AC 66 ms
13,304 KB
testcase_42 AC 160 ms
20,376 KB
testcase_43 AC 32 ms
10,624 KB
testcase_44 AC 31 ms
10,624 KB
testcase_45 AC 31 ms
10,624 KB
testcase_46 AC 31 ms
10,624 KB
testcase_47 AC 30 ms
10,624 KB
testcase_48 AC 31 ms
10,624 KB
testcase_49 AC 31 ms
10,624 KB
testcase_50 AC 31 ms
10,624 KB
testcase_51 AC 31 ms
10,624 KB
testcase_52 AC 31 ms
10,624 KB
testcase_53 AC 30 ms
10,752 KB
testcase_54 AC 31 ms
10,624 KB
testcase_55 AC 31 ms
10,624 KB
testcase_56 AC 31 ms
10,624 KB
testcase_57 AC 31 ms
10,752 KB
testcase_58 AC 30 ms
10,624 KB
testcase_59 AC 31 ms
10,624 KB
testcase_60 AC 30 ms
10,624 KB
testcase_61 AC 30 ms
10,624 KB
testcase_62 AC 31 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N =int(input())
A =[int(i)for i in input().split()]

def cmb(n,r,mod):
    if (r<0 or r>n):
        return 0
    r = min(r,n-r)
    #n!/(r!(n-r)!)
    return g1[n]*g2[r]*g2[n-r] %mod #nCrのmod

mod = 10**9+7
g1 =[1,1] #i番目=i!の元
g2 =[1,1] #i番目=i!の逆元
inverse =[0,1] #i番目=iの逆元

for i in range(2,N+1):
    g1.append(g1[-1]*i %mod) #i!の元の追加
    inverse.append(-inverse[mod % i] * (mod//i) % mod) #???(iの逆元を計算してるはず)
    g2.append((g2[-1]*inverse[-1])%mod)

ans = 0
for i in range((N+1)//2):
    a =A[i] +A[N-1-i]
    ans += a * cmb(N-1,i,mod) % mod
if N%2==1:
    n = N//2
    ans -= A[n] * cmb(N-1,n,mod) % mod

print(ans%mod)
0