結果

問題 No.1102 Remnants
ユーザー marroncastlemarroncastle
提出日時 2020-07-27 23:56:19
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 994 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 284 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 34,160 KB
最終ジャッジ日時 2024-06-28 20:23:32
合計ジャッジ時間 11,360 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 769 ms
25,636 KB
testcase_06 AC 196 ms
14,580 KB
testcase_07 AC 994 ms
34,160 KB
testcase_08 AC 43 ms
11,008 KB
testcase_09 AC 72 ms
11,520 KB
testcase_10 AC 34 ms
11,008 KB
testcase_11 AC 54 ms
11,392 KB
testcase_12 AC 70 ms
11,776 KB
testcase_13 AC 66 ms
11,392 KB
testcase_14 AC 446 ms
19,016 KB
testcase_15 AC 358 ms
18,612 KB
testcase_16 AC 894 ms
30,988 KB
testcase_17 AC 829 ms
29,576 KB
testcase_18 AC 862 ms
30,960 KB
testcase_19 AC 295 ms
17,728 KB
testcase_20 AC 105 ms
13,404 KB
testcase_21 AC 524 ms
23,036 KB
testcase_22 AC 728 ms
28,120 KB
testcase_23 AC 554 ms
24,028 KB
testcase_24 AC 396 ms
20,236 KB
testcase_25 AC 857 ms
31,424 KB
testcase_26 AC 70 ms
11,904 KB
testcase_27 AC 233 ms
16,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
A = list(map(int, input().split()))

def combs_mod(n,k,mod):
  #nC0からnCkまで
  inv = [1]*(n+1)
  for i in range(1,n):
    inv[i] = pow(i,mod-2,mod)
  ans = [1]*(n+1)
  for i in range(1,n):
    ans[i] = ans[i-1]*(k+i)*inv[i]%mod
  return ans

ans = 0
mod = 10**9+7
combs = combs_mod(N,K,mod)
for i in range(N):
  ans += A[i]*combs[i]*combs[N-1-i]
  ans %= mod
print(ans)
0