結果

問題 No.1081 和の和
ユーザー rlangevinrlangevin
提出日時 2024-05-15 00:57:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 39 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 578 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 54,220 KB
最終ジャッジ日時 2024-05-15 00:57:59
合計ジャッジ時間 2,085 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,500 KB
testcase_01 AC 38 ms
52,544 KB
testcase_02 AC 39 ms
53,384 KB
testcase_03 AC 38 ms
52,188 KB
testcase_04 AC 39 ms
54,220 KB
testcase_05 AC 39 ms
52,124 KB
testcase_06 AC 39 ms
53,380 KB
testcase_07 AC 39 ms
52,964 KB
testcase_08 AC 39 ms
52,516 KB
testcase_09 AC 39 ms
52,320 KB
testcase_10 AC 39 ms
53,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod = 10 ** 9 + 7
n = 2 * N
fact = [1] * (n + 1)
invfact = [1] * (n + 1)
for i in range(1, n):
    fact[i + 1] = ((i+1) * fact[i]) % mod
invfact[n] = pow(fact[n], mod - 2, mod)
for i in range(n - 1, -1, -1):
    invfact[i] = invfact[i + 1] * (i + 1) % mod

def comb(n, r):
    if n < 0 or r < 0 or n - r < 0:
        return 0
    return fact[n] * invfact[r] * invfact[n - r] % mod


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