結果

問題 No.1102 Remnants
ユーザー yuruhiyayuruhiya
提出日時 2020-07-05 11:56:18
言語 Ruby
(3.3.0)
結果
AC  
実行時間 533 ms / 2,000 ms
コード長 270 bytes
コンパイル時間 55 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,744 KB
最終ジャッジ日時 2024-09-22 07:43:31
合計ジャッジ時間 7,415 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 88 ms
12,160 KB
testcase_01 AC 85 ms
12,288 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 84 ms
12,416 KB
testcase_04 AC 85 ms
12,160 KB
testcase_05 AC 324 ms
28,800 KB
testcase_06 AC 125 ms
14,848 KB
testcase_07 AC 533 ms
31,744 KB
testcase_08 AC 92 ms
12,416 KB
testcase_09 AC 98 ms
12,672 KB
testcase_10 AC 90 ms
12,288 KB
testcase_11 AC 101 ms
12,544 KB
testcase_12 AC 106 ms
12,544 KB
testcase_13 AC 99 ms
12,544 KB
testcase_14 AC 222 ms
21,504 KB
testcase_15 AC 192 ms
18,944 KB
testcase_16 AC 391 ms
30,336 KB
testcase_17 AC 469 ms
29,440 KB
testcase_18 AC 478 ms
30,336 KB
testcase_19 AC 221 ms
18,432 KB
testcase_20 AC 128 ms
13,568 KB
testcase_21 AC 326 ms
23,296 KB
testcase_22 AC 425 ms
27,776 KB
testcase_23 AC 346 ms
23,424 KB
testcase_24 AC 275 ms
20,480 KB
testcase_25 AC 488 ms
30,720 KB
testcase_26 AC 109 ms
12,672 KB
testcase_27 AC 188 ms
16,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

MOD = 1_000_000_007
n, k = gets.split.map &:to_i
a = gets.split.map &:to_i

comb = [0] * (n + 1)
comb[0] = 1
(1..n).each { |i| comb[i] = comb[i - 1] * (i + k) * i.pow(MOD - 2, MOD) % MOD }

puts a.each_with_index.sum { |v, i| v * comb[i] * comb[n - i - 1] % MOD } % MOD
0