結果

問題 No.1102 Remnants
ユーザー ayaoniayaoni
提出日時 2021-04-25 01:27:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 695 bytes
コンパイル時間 597 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 109,476 KB
最終ジャッジ日時 2024-07-04 09:20:23
合計ジャッジ時間 6,167 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,712 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 39 ms
51,968 KB
testcase_04 AC 39 ms
51,712 KB
testcase_05 AC 216 ms
108,032 KB
testcase_06 AC 78 ms
69,504 KB
testcase_07 AC 290 ms
109,476 KB
testcase_08 AC 55 ms
61,952 KB
testcase_09 AC 60 ms
63,232 KB
testcase_10 AC 53 ms
61,952 KB
testcase_11 AC 60 ms
65,536 KB
testcase_12 AC 65 ms
67,200 KB
testcase_13 AC 59 ms
63,616 KB
testcase_14 AC 140 ms
87,040 KB
testcase_15 AC 119 ms
80,896 KB
testcase_16 AC 242 ms
109,312 KB
testcase_17 AC 252 ms
102,272 KB
testcase_18 AC 258 ms
104,064 KB
testcase_19 AC 132 ms
87,040 KB
testcase_20 AC 83 ms
72,704 KB
testcase_21 AC 175 ms
93,312 KB
testcase_22 AC 229 ms
100,608 KB
testcase_23 AC 189 ms
93,568 KB
testcase_24 AC 151 ms
89,088 KB
testcase_25 AC 259 ms
104,448 KB
testcase_26 AC 65 ms
67,968 KB
testcase_27 AC 114 ms
84,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10**7)
def I(): return int(sys.stdin.readline().rstrip())
def MI(): return map(int,sys.stdin.readline().rstrip().split())
def LI(): return list(map(int,sys.stdin.readline().rstrip().split()))
def LI2(): return list(map(int,sys.stdin.readline().rstrip()))
def S(): return sys.stdin.readline().rstrip()
def LS(): return list(sys.stdin.readline().rstrip().split())
def LS2(): return list(sys.stdin.readline().rstrip())


N,K = MI()
A = LI()
mod = 10**9+7

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

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

print(ans)
0