結果

問題 No.1102 Remnants
ユーザー anagohirameanagohirame
提出日時 2020-07-04 00:12:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 258 ms / 2,000 ms
コード長 302 bytes
コンパイル時間 291 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 113,096 KB
最終ジャッジ日時 2024-09-17 05:14:24
合計ジャッジ時間 4,433 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,400 KB
testcase_01 AC 33 ms
53,044 KB
testcase_02 AC 36 ms
53,988 KB
testcase_03 AC 36 ms
53,192 KB
testcase_04 AC 33 ms
52,132 KB
testcase_05 AC 177 ms
99,848 KB
testcase_06 AC 67 ms
69,480 KB
testcase_07 AC 258 ms
113,096 KB
testcase_08 AC 43 ms
62,840 KB
testcase_09 AC 48 ms
63,832 KB
testcase_10 AC 43 ms
63,668 KB
testcase_11 AC 48 ms
67,004 KB
testcase_12 AC 51 ms
68,096 KB
testcase_13 AC 49 ms
65,256 KB
testcase_14 AC 118 ms
81,628 KB
testcase_15 AC 101 ms
77,332 KB
testcase_16 AC 213 ms
105,560 KB
testcase_17 AC 228 ms
106,536 KB
testcase_18 AC 232 ms
103,492 KB
testcase_19 AC 114 ms
84,680 KB
testcase_20 AC 63 ms
73,500 KB
testcase_21 AC 161 ms
95,224 KB
testcase_22 AC 208 ms
104,356 KB
testcase_23 AC 173 ms
95,652 KB
testcase_24 AC 139 ms
90,972 KB
testcase_25 AC 234 ms
103,428 KB
testcase_26 AC 56 ms
69,160 KB
testcase_27 AC 98 ms
83,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 10**9 + 7
n, k = map(int, input().split())
comb = [1 for _ in range(n+1)]
for i in range(1, n):
	comb[i] = comb[i-1] * (k+i) * pow(i, MOD-2, MOD)
	comb[i] %= MOD

a = list(map(int, input().split()))
ans = 0
for i, x in enumerate(a):
	j = n-i-1
	ans += comb[i] * comb[j] * x
	ans %= MOD
print(ans)
0