結果

問題 No.1102 Remnants
ユーザー takakintakakin
提出日時 2020-07-06 22:22:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,315 ms / 2,000 ms
コード長 595 bytes
コンパイル時間 650 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 42,160 KB
最終ジャッジ日時 2024-09-24 18:30:53
合計ジャッジ時間 17,611 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 189 ms
26,496 KB
testcase_01 AC 189 ms
26,496 KB
testcase_02 AC 185 ms
26,496 KB
testcase_03 AC 197 ms
26,624 KB
testcase_04 AC 190 ms
26,496 KB
testcase_05 AC 1,084 ms
32,860 KB
testcase_06 AC 338 ms
28,580 KB
testcase_07 AC 1,315 ms
42,160 KB
testcase_08 AC 207 ms
26,752 KB
testcase_09 AC 240 ms
27,136 KB
testcase_10 AC 197 ms
26,496 KB
testcase_11 AC 223 ms
26,880 KB
testcase_12 AC 257 ms
27,136 KB
testcase_13 AC 237 ms
26,752 KB
testcase_14 AC 680 ms
30,488 KB
testcase_15 AC 584 ms
31,852 KB
testcase_16 AC 1,239 ms
39,500 KB
testcase_17 AC 1,158 ms
38,684 KB
testcase_18 AC 1,167 ms
39,964 KB
testcase_19 AC 546 ms
31,228 KB
testcase_20 AC 290 ms
27,648 KB
testcase_21 AC 779 ms
34,732 KB
testcase_22 AC 1,022 ms
38,000 KB
testcase_23 AC 831 ms
35,280 KB
testcase_24 AC 640 ms
32,852 KB
testcase_25 AC 1,183 ms
40,308 KB
testcase_26 AC 251 ms
27,392 KB
testcase_27 AC 442 ms
29,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input=lambda: sys.stdin.readline().rstrip()
n,k=map(int,input().split())
A=[int(i) for i in input().split()]
mod=10**9+7
n_max=2*(10**5+1)
F,FI=[0]*(n_max+1),[0]*(n_max+1)
F[0],FI[0]=1,1
for i in range(n_max):
  F[i+1]=(F[i]*(i+1))%mod
FI[n_max-1]=pow(F[n_max-1],mod-2,mod)
for i in reversed(range(n_max-1)):
  FI[i]=(FI[i+1]*(i+1))%mod
def comb(x,y):
  return (F[x]*FI[x-y]*FI[y])%mod
def hom(x,y):
  return comb(x+y-1,y)

H=[0]*(n+1)
H[0]=1
for i in range(n):
  H[i+1]=(H[i]*(k+i+1)*pow(i+1,mod-2,mod))%mod
ans=0
for i,a in enumerate(A):
  ans=(ans+a*(H[i]*H[n-i-1]))%mod
print(ans)
0