結果

問題 No.1489 Repeat Cumulative Sum
ユーザー tktk_snsntktk_snsn
提出日時 2021-04-23 22:47:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 154 ms / 2,000 ms
コード長 260 bytes
コンパイル時間 146 ms
コンパイル使用メモリ 82,224 KB
実行使用メモリ 90,756 KB
最終ジャッジ日時 2024-07-04 08:29:43
合計ジャッジ時間 4,004 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,028 KB
testcase_01 AC 37 ms
52,244 KB
testcase_02 AC 38 ms
52,236 KB
testcase_03 AC 128 ms
86,892 KB
testcase_04 AC 122 ms
85,808 KB
testcase_05 AC 132 ms
86,908 KB
testcase_06 AC 117 ms
84,104 KB
testcase_07 AC 89 ms
79,052 KB
testcase_08 AC 73 ms
71,972 KB
testcase_09 AC 144 ms
88,784 KB
testcase_10 AC 130 ms
87,328 KB
testcase_11 AC 113 ms
84,020 KB
testcase_12 AC 47 ms
62,340 KB
testcase_13 AC 107 ms
83,080 KB
testcase_14 AC 149 ms
90,756 KB
testcase_15 AC 145 ms
90,424 KB
testcase_16 AC 99 ms
81,952 KB
testcase_17 AC 105 ms
82,796 KB
testcase_18 AC 86 ms
78,480 KB
testcase_19 AC 71 ms
72,204 KB
testcase_20 AC 79 ms
76,528 KB
testcase_21 AC 113 ms
84,308 KB
testcase_22 AC 50 ms
63,072 KB
testcase_23 AC 64 ms
66,320 KB
testcase_24 AC 37 ms
52,724 KB
testcase_25 AC 59 ms
67,948 KB
testcase_26 AC 154 ms
90,580 KB
testcase_27 AC 101 ms
77,008 KB
testcase_28 AC 50 ms
63,004 KB
testcase_29 AC 83 ms
72,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 10**9 + 7

N, M = map(int, input().split())
A = list(map(int, input().split()))
A.reverse()

ans = 0
cnt = M % mod
for i, a in enumerate(A, 1):
    ans += a * cnt
    ans %= mod
    cnt *= (M+i)
    cnt *= pow(i+1, mod-2, mod)
    cnt %= mod

print(ans)
0