結果

問題 No.1489 Repeat Cumulative Sum
ユーザー yuruhiyayuruhiya
提出日時 2021-04-23 23:20:54
言語 Ruby
(3.3.0)
結果
AC  
実行時間 290 ms / 2,000 ms
コード長 197 bytes
コンパイル時間 408 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 22,784 KB
最終ジャッジ日時 2024-07-04 08:45:36
合計ジャッジ時間 6,584 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 80 ms
12,032 KB
testcase_03 AC 245 ms
18,816 KB
testcase_04 AC 224 ms
18,560 KB
testcase_05 AC 251 ms
18,944 KB
testcase_06 AC 218 ms
18,688 KB
testcase_07 AC 171 ms
15,744 KB
testcase_08 AC 140 ms
14,720 KB
testcase_09 AC 276 ms
21,248 KB
testcase_10 AC 264 ms
18,816 KB
testcase_11 AC 205 ms
18,304 KB
testcase_12 AC 85 ms
12,672 KB
testcase_13 AC 192 ms
16,128 KB
testcase_14 AC 287 ms
22,528 KB
testcase_15 AC 277 ms
21,632 KB
testcase_16 AC 178 ms
16,000 KB
testcase_17 AC 192 ms
16,128 KB
testcase_18 AC 167 ms
15,744 KB
testcase_19 AC 139 ms
14,720 KB
testcase_20 AC 151 ms
15,232 KB
testcase_21 AC 215 ms
18,560 KB
testcase_22 AC 100 ms
12,416 KB
testcase_23 AC 118 ms
13,824 KB
testcase_24 AC 81 ms
12,288 KB
testcase_25 AC 113 ms
13,440 KB
testcase_26 AC 290 ms
22,784 KB
testcase_27 AC 172 ms
18,560 KB
testcase_28 AC 91 ms
12,416 KB
testcase_29 AC 146 ms
15,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:2: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

M = 10**9 + 7
n, m = gets.split.map(&:to_i)
a = gets.split.map(&:to_i)
b, c = 1, 1
puts a.reverse.each_with_index.sum { |x, i|
	b = b * (m - 1 + i) * (i + 1).pow(M - 2, M) % M
	c += b
	c * x
} % M
0