結果

問題 No.1102 Remnants
ユーザー googol_S0googol_S0
提出日時 2020-07-03 21:51:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,075 ms / 2,000 ms
コード長 300 bytes
コンパイル時間 221 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 32,536 KB
最終ジャッジ日時 2024-09-17 00:19:32
合計ジャッジ時間 10,645 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 25 ms
10,752 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 81 ms
25,624 KB
testcase_06 AC 164 ms
13,540 KB
testcase_07 AC 1,075 ms
32,536 KB
testcase_08 AC 29 ms
10,880 KB
testcase_09 AC 73 ms
11,264 KB
testcase_10 AC 33 ms
10,624 KB
testcase_11 AC 56 ms
11,264 KB
testcase_12 AC 75 ms
11,392 KB
testcase_13 AC 30 ms
11,520 KB
testcase_14 AC 57 ms
18,996 KB
testcase_15 AC 386 ms
16,816 KB
testcase_16 AC 967 ms
27,436 KB
testcase_17 AC 938 ms
25,268 KB
testcase_18 AC 947 ms
29,760 KB
testcase_19 AC 331 ms
17,304 KB
testcase_20 AC 118 ms
12,776 KB
testcase_21 AC 569 ms
22,072 KB
testcase_22 AC 812 ms
26,800 KB
testcase_23 AC 619 ms
22,992 KB
testcase_24 AC 456 ms
19,684 KB
testcase_25 AC 958 ms
29,996 KB
testcase_26 AC 77 ms
11,904 KB
testcase_27 AC 261 ms
15,652 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K=map(int,input().split())
A=list(map(int,input().split()))
if K==0:
  print(sum(A)%(10**9+7))
  exit()
X=[K]
mod=10**9+7
for i in range(N+1):
  X.append(X[-1]*pow(i+2,mod-2,mod)*(K+i+1)%mod)
P=0
for i in range(N):
  P=(P+A[i]*(1+i)*(N-i)*X[i]*X[N-i-1])%mod
print(P*pow(pow(K,mod-2,mod),2,mod)%mod)
0