結果

問題 No.1081 和の和
ユーザー tanon710tanon710
提出日時 2020-06-19 21:46:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 2,000 ms
コード長 360 bytes
コンパイル時間 293 ms
コンパイル使用メモリ 82,984 KB
実行使用メモリ 52,736 KB
最終ジャッジ日時 2024-07-03 14:14:25
合計ジャッジ時間 1,299 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
arr=list(map(int,input().split()))

mod=10**9+7

fact=[1]
for i in range(1,n+1):
    fact.append((fact[-1]*i)%mod)
revfact=[]
for i in range(n+1):
    revfact.append(pow(fact[i],mod-2,mod))

def comb(n,k):
    return (fact[n]*revfact[k]*revfact[n-k])%mod

ans=0
for i in range(n):
    ans+=arr[i]*comb(n-1,min(i,(n-1-i)))
    ans%=mod
print(ans)
0