結果

問題 No.1102 Remnants
ユーザー tyawanmusityawanmusi
提出日時 2020-07-03 21:52:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,191 ms / 2,000 ms
コード長 238 bytes
コンパイル時間 254 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 33,380 KB
最終ジャッジ日時 2024-09-17 00:23:06
合計ジャッジ時間 12,944 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 943 ms
25,608 KB
testcase_06 AC 177 ms
13,776 KB
testcase_07 AC 1,191 ms
33,380 KB
testcase_08 AC 46 ms
11,008 KB
testcase_09 AC 77 ms
11,392 KB
testcase_10 AC 36 ms
10,624 KB
testcase_11 AC 64 ms
11,136 KB
testcase_12 AC 83 ms
11,392 KB
testcase_13 AC 80 ms
11,264 KB
testcase_14 AC 539 ms
18,856 KB
testcase_15 AC 426 ms
17,056 KB
testcase_16 AC 1,086 ms
27,376 KB
testcase_17 AC 1,011 ms
25,248 KB
testcase_18 AC 1,025 ms
30,476 KB
testcase_19 AC 370 ms
17,280 KB
testcase_20 AC 133 ms
12,888 KB
testcase_21 AC 627 ms
22,064 KB
testcase_22 AC 879 ms
26,784 KB
testcase_23 AC 676 ms
23,708 KB
testcase_24 AC 495 ms
19,660 KB
testcase_25 AC 1,039 ms
30,704 KB
testcase_26 AC 87 ms
11,776 KB
testcase_27 AC 291 ms
15,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,k=map(int,input().split())
a=list(map(int,input().split()))
mod=10**9+7
ans=0
f=[1]
for i in range(1,n):
  f.append(f[-1]*(k+i)*pow(i,mod-2,mod)%mod)
for i in range(n):
  x=(i+1)
  y=(n-i)
  ans+=f[i]*f[n-i-1]*a[i]
  ans%=mod
print(ans)
0