結果

問題 No.1102 Remnants
ユーザー NoneNone
提出日時 2021-03-04 16:36:01
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 547 bytes
コンパイル時間 204 ms
コンパイル使用メモリ 82,292 KB
実行使用メモリ 165,328 KB
最終ジャッジ日時 2024-10-05 01:48:51
合計ジャッジ時間 6,722 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
55,412 KB
testcase_01 AC 42 ms
54,464 KB
testcase_02 AC 39 ms
55,332 KB
testcase_03 AC 39 ms
54,468 KB
testcase_04 AC 42 ms
54,064 KB
testcase_05 AC 352 ms
129,500 KB
testcase_06 AC 102 ms
78,760 KB
testcase_07 AC 431 ms
165,328 KB
testcase_08 AC 59 ms
68,836 KB
testcase_09 AC 68 ms
71,348 KB
testcase_10 AC 47 ms
64,168 KB
testcase_11 AC 65 ms
71,940 KB
testcase_12 AC 72 ms
73,428 KB
testcase_13 AC 69 ms
72,332 KB
testcase_14 AC 213 ms
101,956 KB
testcase_15 AC 184 ms
96,168 KB
testcase_16 AC 374 ms
107,692 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 86 ms
77,468 KB
testcase_21 AC 259 ms
117,344 KB
testcase_22 AC 345 ms
122,040 KB
testcase_23 AC 281 ms
110,268 KB
testcase_24 AC 228 ms
112,476 KB
testcase_25 AC 402 ms
155,820 KB
testcase_26 AC 78 ms
74,400 KB
testcase_27 AC 153 ms
96,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #





##############################################################################################
import sys
input = sys.stdin.readline
from collections import defaultdict

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

fac=defaultdict(int)
fac[0]=1
for i in range(1,N+1):
    fac[i]=fac[i-1]*i%MOD
fac[K]=1
for i in range(K+1,K+N+1):
    fac[i]=fac[i-1]*i%MOD

def H(k,K):
    return fac[K+k-1]*pow(fac[k-1],MOD-2,MOD)%MOD

res=0
for i in range(N):
    res+=A[i]*H(i+1,K)%MOD*H(N-i,K)%MOD
    res%=MOD
print(res)
0