結果

問題 No.1489 Repeat Cumulative Sum
ユーザー rlangevinrlangevin
提出日時 2023-11-19 13:08:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 427 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,172 KB
実行使用メモリ 91,776 KB
最終ジャッジ日時 2024-09-26 06:16:12
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 39 ms
51,800 KB
testcase_03 AC 151 ms
87,784 KB
testcase_04 AC 140 ms
86,272 KB
testcase_05 AC 149 ms
87,624 KB
testcase_06 AC 131 ms
85,120 KB
testcase_07 AC 108 ms
81,336 KB
testcase_08 AC 86 ms
74,880 KB
testcase_09 AC 162 ms
89,756 KB
testcase_10 AC 146 ms
87,744 KB
testcase_11 AC 130 ms
85,268 KB
testcase_12 AC 57 ms
63,616 KB
testcase_13 AC 128 ms
84,108 KB
testcase_14 AC 170 ms
91,724 KB
testcase_15 AC 167 ms
91,520 KB
testcase_16 AC 119 ms
82,560 KB
testcase_17 AC 123 ms
83,352 KB
testcase_18 AC 111 ms
81,480 KB
testcase_19 AC 88 ms
74,240 KB
testcase_20 AC 96 ms
78,388 KB
testcase_21 AC 133 ms
85,120 KB
testcase_22 AC 59 ms
64,512 KB
testcase_23 AC 74 ms
69,248 KB
testcase_24 AC 38 ms
52,352 KB
testcase_25 AC 71 ms
68,864 KB
testcase_26 AC 173 ms
91,776 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
N -= 1
A = list(map(int, input().split())) + [0]
mod = 10**9 + 7
comb = 1
inv = 1
for i in range(1, N + 1):
    comb *= M + i
    inv *= i
    comb %= mod
    inv %= mod
    
inv = pow(inv, mod - 2, mod)
comb = comb * inv % mod
ans = 0
for i in range(N):
    ans += (A[i] - A[i - 1]) * (comb - 1)
    ans %= mod
    comb *= (N - i) * pow(N + M - i, mod - 2, mod)
    comb %= mod
    
print(ans)
0