結果

問題 No.1102 Remnants
ユーザー titiatitia
提出日時 2020-07-04 05:53:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 318 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 169 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 129,396 KB
最終ジャッジ日時 2024-09-17 10:15:40
合計ジャッジ時間 4,935 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,452 KB
testcase_01 AC 40 ms
52,288 KB
testcase_02 AC 37 ms
52,444 KB
testcase_03 AC 37 ms
52,084 KB
testcase_04 AC 37 ms
51,908 KB
testcase_05 AC 234 ms
129,396 KB
testcase_06 AC 75 ms
71,932 KB
testcase_07 AC 318 ms
127,608 KB
testcase_08 AC 49 ms
63,024 KB
testcase_09 AC 54 ms
64,556 KB
testcase_10 AC 48 ms
64,124 KB
testcase_11 AC 54 ms
65,816 KB
testcase_12 AC 59 ms
68,968 KB
testcase_13 AC 56 ms
65,904 KB
testcase_14 AC 146 ms
96,056 KB
testcase_15 AC 123 ms
89,344 KB
testcase_16 AC 256 ms
112,920 KB
testcase_17 AC 273 ms
105,768 KB
testcase_18 AC 276 ms
106,164 KB
testcase_19 AC 130 ms
92,400 KB
testcase_20 AC 70 ms
74,040 KB
testcase_21 AC 186 ms
94,860 KB
testcase_22 AC 244 ms
102,756 KB
testcase_23 AC 196 ms
94,240 KB
testcase_24 AC 152 ms
92,308 KB
testcase_25 AC 282 ms
108,196 KB
testcase_26 AC 59 ms
68,716 KB
testcase_27 AC 113 ms
89,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,K=map(int,input().split())
A=list(map(int,input().split()))
mod=10**9+7

Combi=dict()
Combi[K]=1
for i in range(K+1,N+K+1):
    Combi[i]=Combi[i-1]*i*pow(i-K,mod-2,mod) %mod

ANS=0
for i in range(N):
    ANS=(ANS+Combi[i+K]*Combi[N-1-i+K]*A[i])%mod

print(ANS)
0