結果

問題 No.1102 Remnants
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-11-17 23:12:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 420 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,204 KB
実行使用メモリ 125,616 KB
最終ジャッジ日時 2024-09-26 05:34:04
合計ジャッジ時間 6,589 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
55,920 KB
testcase_01 AC 54 ms
56,188 KB
testcase_02 AC 54 ms
55,612 KB
testcase_03 AC 53 ms
56,004 KB
testcase_04 AC 53 ms
56,132 KB
testcase_05 AC 257 ms
104,816 KB
testcase_06 AC 95 ms
75,832 KB
testcase_07 AC 350 ms
125,616 KB
testcase_08 AC 66 ms
66,628 KB
testcase_09 AC 73 ms
68,408 KB
testcase_10 AC 67 ms
65,660 KB
testcase_11 AC 76 ms
70,504 KB
testcase_12 AC 80 ms
72,460 KB
testcase_13 AC 75 ms
69,784 KB
testcase_14 AC 170 ms
98,848 KB
testcase_15 AC 144 ms
92,348 KB
testcase_16 AC 271 ms
106,928 KB
testcase_17 AC 287 ms
107,284 KB
testcase_18 AC 300 ms
122,472 KB
testcase_19 AC 139 ms
87,144 KB
testcase_20 AC 86 ms
79,080 KB
testcase_21 AC 200 ms
96,100 KB
testcase_22 AC 257 ms
103,904 KB
testcase_23 AC 210 ms
96,020 KB
testcase_24 AC 174 ms
89,804 KB
testcase_25 AC 312 ms
122,652 KB
testcase_26 AC 71 ms
72,740 KB
testcase_27 AC 122 ms
86,692 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

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

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


ans = 0
for i,a in enumerate(A):
    
    ans += C[i+K]*C[N-i+K-1]*a
    ans %= mod
print(ans)
0