結果

問題 No.1102 Remnants
ユーザー tktk_snsntktk_snsn
提出日時 2020-12-20 15:35:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 293 ms / 2,000 ms
コード長 325 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 106,240 KB
最終ジャッジ日時 2024-09-21 11:52:39
合計ジャッジ時間 5,690 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 37 ms
51,584 KB
testcase_04 AC 36 ms
51,840 KB
testcase_05 AC 214 ms
98,816 KB
testcase_06 AC 74 ms
68,480 KB
testcase_07 AC 293 ms
102,512 KB
testcase_08 AC 52 ms
62,592 KB
testcase_09 AC 57 ms
63,360 KB
testcase_10 AC 51 ms
61,568 KB
testcase_11 AC 60 ms
65,536 KB
testcase_12 AC 63 ms
67,328 KB
testcase_13 AC 56 ms
63,616 KB
testcase_14 AC 134 ms
82,816 KB
testcase_15 AC 113 ms
77,312 KB
testcase_16 AC 225 ms
103,936 KB
testcase_17 AC 244 ms
103,552 KB
testcase_18 AC 244 ms
106,240 KB
testcase_19 AC 122 ms
85,248 KB
testcase_20 AC 70 ms
69,888 KB
testcase_21 AC 167 ms
92,928 KB
testcase_22 AC 210 ms
101,376 KB
testcase_23 AC 180 ms
93,696 KB
testcase_24 AC 142 ms
87,424 KB
testcase_25 AC 247 ms
105,984 KB
testcase_26 AC 62 ms
66,688 KB
testcase_27 AC 107 ms
82,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

L = [1] * (N + 1)
for i in range(1, N + 1):
    L[i] = L[i - 1] * (K + i) * pow(i, mod - 2, mod) % mod
R = L[::-1]


ans = 0
for i, a in enumerate(A):
    ans += a * L[i] * R[i + 1] % mod
    if ans >= mod:
        ans -= mod

print(ans)
0