結果

問題 No.1102 Remnants
ユーザー brthyyjpbrthyyjp
提出日時 2021-12-15 16:35:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 296 ms / 2,000 ms
コード長 321 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 107,480 KB
最終ジャッジ日時 2024-07-23 19:58:30
合計ジャッジ時間 8,250 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 225 ms
80,128 KB
testcase_01 AC 194 ms
61,056 KB
testcase_02 AC 218 ms
79,744 KB
testcase_03 AC 218 ms
80,000 KB
testcase_04 AC 189 ms
61,248 KB
testcase_05 AC 227 ms
98,432 KB
testcase_06 AC 226 ms
83,968 KB
testcase_07 AC 296 ms
104,900 KB
testcase_08 AC 194 ms
64,128 KB
testcase_09 AC 220 ms
82,048 KB
testcase_10 AC 222 ms
80,384 KB
testcase_11 AC 227 ms
80,372 KB
testcase_12 AC 228 ms
80,000 KB
testcase_13 AC 199 ms
65,152 KB
testcase_14 AC 214 ms
82,432 KB
testcase_15 AC 230 ms
90,752 KB
testcase_16 AC 257 ms
107,008 KB
testcase_17 AC 283 ms
105,600 KB
testcase_18 AC 281 ms
107,468 KB
testcase_19 AC 245 ms
87,936 KB
testcase_20 AC 226 ms
80,512 KB
testcase_21 AC 261 ms
95,872 KB
testcase_22 AC 273 ms
103,552 KB
testcase_23 AC 260 ms
96,256 KB
testcase_24 AC 250 ms
90,496 KB
testcase_25 AC 280 ms
107,480 KB
testcase_26 AC 224 ms
80,372 KB
testcase_27 AC 238 ms
85,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))

mod = 10**9+7

N = 2*10**5+50
C = [0]*N
C[0] = 1
for i in range(1, N):
    C[i] = C[i-1]*(k+i)*pow(i, mod-2, mod)
    C[i] %= mod

def cmb(i):
    return C[i]

ans = 0
for i, a in enumerate(A):
    ans += a*cmb(i)*cmb(n-i-1)
    ans %= mod
print(ans)
0