結果

問題 No.1102 Remnants
ユーザー persimmon-persimmonpersimmon-persimmon
提出日時 2021-06-30 13:31:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 286 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 115,072 KB
最終ジャッジ日時 2024-06-27 00:48:18
合計ジャッジ時間 5,349 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 40 ms
51,968 KB
testcase_04 AC 40 ms
51,840 KB
testcase_05 AC 214 ms
108,672 KB
testcase_06 AC 73 ms
70,528 KB
testcase_07 AC 286 ms
112,860 KB
testcase_08 AC 51 ms
62,720 KB
testcase_09 AC 55 ms
64,512 KB
testcase_10 AC 49 ms
62,592 KB
testcase_11 AC 59 ms
65,408 KB
testcase_12 AC 63 ms
67,584 KB
testcase_13 AC 59 ms
64,896 KB
testcase_14 AC 138 ms
88,192 KB
testcase_15 AC 117 ms
81,664 KB
testcase_16 AC 236 ms
115,072 KB
testcase_17 AC 242 ms
102,400 KB
testcase_18 AC 249 ms
104,236 KB
testcase_19 AC 119 ms
86,912 KB
testcase_20 AC 66 ms
71,040 KB
testcase_21 AC 165 ms
93,440 KB
testcase_22 AC 216 ms
100,792 KB
testcase_23 AC 175 ms
93,568 KB
testcase_24 AC 143 ms
89,520 KB
testcase_25 AC 258 ms
104,064 KB
testcase_26 AC 58 ms
67,584 KB
testcase_27 AC 104 ms
83,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
mod=10**9+7
ans=0
ary=[0,1]
# ary[i]:k個の区別できる箱にi個の区別できないボールを入れる入れ方
# =cmb(k+i-1,i)=cmb(k+(i-1)-1,(i-1))*(k+i-1)//i
for i in range(1,n+1):
  x=(k+i-1)%mod
  y=pow(i,mod-2,mod)%mod
  ary.append(ary[-1]*x*y%mod)
for i in range(len(ary)-1):
  ary[i+1]+=ary[i]
  ary[i+1]%=mod
for i in range(n):
  # k回の操作でlはi以下,rはi以上を選び続ける。
  tmp=a[i]*ary[i+1]*ary[n-i]%mod
  ans+=tmp
  ans%=mod
print(ans)
0