結果

問題 No.1489 Repeat Cumulative Sum
ユーザー ayaoniayaoni
提出日時 2021-04-23 22:25:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 214 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 90,832 KB
最終ジャッジ日時 2024-07-04 08:16:50
合計ジャッジ時間 4,653 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,M = MI()
A = LI()
A.reverse()
mod = 10**9+7

c = 1
ans = 0
for i in range(N-1):
    a = A[i]
    c *= M+i
    c *= pow(i+1,mod-2,mod)
    c %= mod
    ans += a*c
    ans %= mod

print(ans)
0