結果

問題 No.1102 Remnants
ユーザー takakintakakin
提出日時 2020-07-06 22:22:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,090 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 32,664 KB
最終ジャッジ日時 2024-09-24 18:31:32
合計ジャッジ時間 12,285 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 30 ms
10,752 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 863 ms
25,620 KB
testcase_06 AC 161 ms
13,796 KB
testcase_07 AC 1,090 ms
32,664 KB
testcase_08 AC 43 ms
11,136 KB
testcase_09 AC 72 ms
11,520 KB
testcase_10 AC 34 ms
10,880 KB
testcase_11 AC 59 ms
11,264 KB
testcase_12 AC 79 ms
11,520 KB
testcase_13 AC 75 ms
11,648 KB
testcase_14 AC 500 ms
19,124 KB
testcase_15 AC 399 ms
17,072 KB
testcase_16 AC 1,007 ms
27,396 KB
testcase_17 AC 965 ms
25,392 KB
testcase_18 AC 964 ms
29,632 KB
testcase_19 AC 347 ms
17,084 KB
testcase_20 AC 121 ms
12,780 KB
testcase_21 AC 589 ms
22,200 KB
testcase_22 AC 825 ms
26,808 KB
testcase_23 AC 636 ms
23,128 KB
testcase_24 AC 460 ms
19,424 KB
testcase_25 AC 975 ms
29,992 KB
testcase_26 AC 82 ms
11,904 KB
testcase_27 AC 270 ms
15,524 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

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