結果

問題 No.1102 Remnants
ユーザー NoneNone
提出日時 2021-03-04 16:45:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 269 ms / 2,000 ms
コード長 279 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 112,808 KB
最終ジャッジ日時 2024-10-05 02:04:14
合計ジャッジ時間 4,630 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,480 KB
testcase_01 AC 41 ms
52,556 KB
testcase_02 AC 38 ms
52,692 KB
testcase_03 AC 38 ms
52,228 KB
testcase_04 AC 38 ms
52,828 KB
testcase_05 AC 211 ms
107,456 KB
testcase_06 AC 73 ms
70,412 KB
testcase_07 AC 269 ms
112,808 KB
testcase_08 AC 49 ms
62,468 KB
testcase_09 AC 53 ms
64,004 KB
testcase_10 AC 47 ms
61,592 KB
testcase_11 AC 53 ms
63,776 KB
testcase_12 AC 56 ms
65,532 KB
testcase_13 AC 55 ms
64,932 KB
testcase_14 AC 135 ms
87,556 KB
testcase_15 AC 114 ms
81,288 KB
testcase_16 AC 233 ms
109,960 KB
testcase_17 AC 232 ms
101,408 KB
testcase_18 AC 235 ms
102,584 KB
testcase_19 AC 115 ms
86,748 KB
testcase_20 AC 64 ms
69,688 KB
testcase_21 AC 159 ms
92,872 KB
testcase_22 AC 205 ms
99,144 KB
testcase_23 AC 168 ms
92,616 KB
testcase_24 AC 136 ms
88,652 KB
testcase_25 AC 235 ms
102,544 KB
testcase_26 AC 57 ms
66,140 KB
testcase_27 AC 96 ms
81,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

MOD = 10**9+7
N,K=map(int, input().split())
A=list(map(int, input().split()))

f=[1]
for i in range(1,N+1):
    f.append(f[-1]*(K+i)*pow(i,MOD-2,MOD)%MOD)

res=0
for i in range(N):
    res+=A[i]*f[i]%MOD*f[N-1-i]%MOD
    res%=MOD
print(res)
0