結果

問題 No.1489 Repeat Cumulative Sum
ユーザー H3PO4H3PO4
提出日時 2022-07-31 08:38:50
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 592 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 21,512 KB
最終ジャッジ日時 2024-07-20 22:37:12
合計ジャッジ時間 10,537 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 468 ms
19,152 KB
testcase_04 AC 427 ms
18,564 KB
testcase_05 AC 460 ms
19,200 KB
testcase_06 AC 383 ms
17,704 KB
testcase_07 AC 264 ms
15,276 KB
testcase_08 AC 173 ms
13,496 KB
testcase_09 AC 529 ms
20,460 KB
testcase_10 AC 456 ms
19,032 KB
testcase_11 AC 375 ms
17,528 KB
testcase_12 AC 44 ms
11,008 KB
testcase_13 AC 339 ms
16,916 KB
testcase_14 AC 564 ms
21,456 KB
testcase_15 AC 543 ms
21,032 KB
testcase_16 AC 285 ms
15,848 KB
testcase_17 AC 321 ms
16,612 KB
testcase_18 AC 252 ms
15,208 KB
testcase_19 AC 169 ms
13,432 KB
testcase_20 AC 216 ms
14,404 KB
testcase_21 AC 386 ms
17,572 KB
testcase_22 AC 59 ms
11,264 KB
testcase_23 AC 143 ms
13,004 KB
testcase_24 AC 30 ms
10,752 KB
testcase_25 AC 106 ms
12,160 KB
testcase_26 AC 592 ms
21,512 KB
testcase_27 AC 338 ms
15,312 KB
testcase_28 AC 55 ms
11,136 KB
testcase_29 AC 241 ms
13,976 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M = map(int, input().split())
A = map(int, input().split())
MOD = 10 ** 9 + 7
modinv = lambda x, mod=MOD: pow(x, mod - 2, mod)

comb = [0] * (N + 1)
comb[0] = 1
for i in range(N):
    comb[i + 1] = comb[i] * (M + i) * modinv(i + 1) % MOD

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