結果

問題 No.1081 和の和
ユーザー rlangevinrlangevin
提出日時 2024-05-15 00:57:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,708 KB
実行使用メモリ 53,288 KB
最終ジャッジ日時 2024-12-20 10:07:18
合計ジャッジ時間 1,475 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,424 KB
testcase_01 AC 41 ms
52,452 KB
testcase_02 AC 41 ms
52,464 KB
testcase_03 AC 39 ms
52,640 KB
testcase_04 AC 42 ms
52,896 KB
testcase_05 AC 40 ms
53,008 KB
testcase_06 AC 40 ms
52,004 KB
testcase_07 AC 40 ms
52,064 KB
testcase_08 AC 40 ms
53,092 KB
testcase_09 AC 40 ms
52,860 KB
testcase_10 AC 40 ms
53,288 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