結果

問題 No.1489 Repeat Cumulative Sum
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2021-04-23 22:51:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 2,000 ms
コード長 278 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 91,264 KB
最終ジャッジ日時 2024-07-04 08:33:15
合計ジャッジ時間 4,157 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,712 KB
testcase_01 AC 38 ms
51,840 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 140 ms
87,296 KB
testcase_04 AC 130 ms
86,024 KB
testcase_05 AC 136 ms
87,664 KB
testcase_06 AC 121 ms
84,660 KB
testcase_07 AC 97 ms
81,152 KB
testcase_08 AC 76 ms
76,288 KB
testcase_09 AC 151 ms
89,648 KB
testcase_10 AC 136 ms
87,296 KB
testcase_11 AC 120 ms
84,608 KB
testcase_12 AC 48 ms
61,952 KB
testcase_13 AC 111 ms
83,328 KB
testcase_14 AC 157 ms
91,136 KB
testcase_15 AC 153 ms
90,752 KB
testcase_16 AC 103 ms
82,048 KB
testcase_17 AC 109 ms
83,072 KB
testcase_18 AC 95 ms
81,024 KB
testcase_19 AC 75 ms
76,160 KB
testcase_20 AC 92 ms
79,360 KB
testcase_21 AC 122 ms
84,864 KB
testcase_22 AC 50 ms
63,744 KB
testcase_23 AC 68 ms
70,912 KB
testcase_24 AC 38 ms
51,840 KB
testcase_25 AC 61 ms
69,120 KB
testcase_26 AC 160 ms
91,264 KB
testcase_27 AC 103 ms
77,568 KB
testcase_28 AC 49 ms
62,080 KB
testcase_29 AC 85 ms
72,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m = map(int,input().split())
A = list(map(int,input().split()))
A = A[::-1]
mod = 10**9+7

ans = 0
prod = 1
base = 1
for i in range(n-1):
    prod *= m+i
    prod %= mod
    base *= (i+1)
    base %= mod
    ans += A[i]*prod*pow(base,mod-2,mod)
    ans %= mod

print(ans)




0