結果

問題 No.1489 Repeat Cumulative Sum
ユーザー rlangevinrlangevin
提出日時 2023-11-19 13:39:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 174 ms / 2,000 ms
コード長 314 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 92,144 KB
最終ジャッジ日時 2024-09-26 06:16:21
合計ジャッジ時間 4,650 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
52,352 KB
testcase_03 AC 146 ms
88,036 KB
testcase_04 AC 140 ms
86,420 KB
testcase_05 AC 146 ms
88,064 KB
testcase_06 AC 132 ms
84,996 KB
testcase_07 AC 108 ms
81,160 KB
testcase_08 AC 85 ms
73,856 KB
testcase_09 AC 160 ms
90,040 KB
testcase_10 AC 147 ms
87,704 KB
testcase_11 AC 133 ms
84,736 KB
testcase_12 AC 61 ms
62,336 KB
testcase_13 AC 124 ms
83,584 KB
testcase_14 AC 170 ms
91,764 KB
testcase_15 AC 166 ms
91,648 KB
testcase_16 AC 114 ms
82,176 KB
testcase_17 AC 123 ms
83,332 KB
testcase_18 AC 108 ms
81,144 KB
testcase_19 AC 85 ms
73,856 KB
testcase_20 AC 96 ms
77,440 KB
testcase_21 AC 131 ms
84,852 KB
testcase_22 AC 59 ms
63,320 KB
testcase_23 AC 85 ms
71,808 KB
testcase_24 AC 41 ms
51,712 KB
testcase_25 AC 69 ms
67,840 KB
testcase_26 AC 174 ms
92,144 KB
testcase_27 AC 123 ms
84,864 KB
testcase_28 AC 58 ms
62,976 KB
testcase_29 AC 97 ms
77,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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