結果

問題 No.1081 和の和
ユーザー zyxwzyxw
提出日時 2021-02-04 10:41:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 479 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 63,104 KB
最終ジャッジ日時 2024-06-30 15:49:50
合計ジャッジ時間 1,390 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,784 KB
testcase_01 AC 45 ms
55,424 KB
testcase_02 AC 44 ms
54,656 KB
testcase_03 AC 42 ms
55,552 KB
testcase_04 AC 49 ms
62,720 KB
testcase_05 AC 41 ms
54,784 KB
testcase_06 AC 44 ms
61,056 KB
testcase_07 AC 49 ms
62,848 KB
testcase_08 AC 50 ms
63,104 KB
testcase_09 AC 53 ms
62,848 KB
testcase_10 AC 49 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from functools import reduce
mod = 10 ** 9 + 7
def cmb(n,r,mod):
    numerator = reduce(lambda x, y: x * y % mod, [n - r + k + 1 for k in range(r)])
    denominator = reduce(lambda x, y: x * y % mod, [k + 1 for k in range(r)])
    return numerator * pow(denominator, mod - 2, mod) % mod
N=int(input())
nCr=[]
for i in range(N-2):
    nCr.append(cmb(N-1,i+1,mod))
A=list(map(int,input().split()))
ans=A[0]+A[N-1]
for i in range(N-2):
    ans+=nCr[i]*A[i+1]
    ans%=mod
print(ans)
0