結果

問題 No.1199 お菓子配り-2
ユーザー 小野寺健小野寺健
提出日時 2021-11-02 12:40:19
言語 Ruby
(3.3.0)
結果
AC  
実行時間 844 ms / 1,000 ms
コード長 317 bytes
コンパイル時間 257 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 21,504 KB
最終ジャッジ日時 2024-10-11 11:22:43
合計ジャッジ時間 30,108 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 85 ms
12,032 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 87 ms
12,160 KB
testcase_03 AC 268 ms
15,360 KB
testcase_04 AC 535 ms
19,712 KB
testcase_05 AC 93 ms
12,288 KB
testcase_06 AC 97 ms
12,672 KB
testcase_07 AC 233 ms
13,952 KB
testcase_08 AC 275 ms
14,208 KB
testcase_09 AC 197 ms
13,568 KB
testcase_10 AC 113 ms
12,672 KB
testcase_11 AC 172 ms
13,312 KB
testcase_12 AC 161 ms
12,800 KB
testcase_13 AC 114 ms
12,544 KB
testcase_14 AC 127 ms
12,544 KB
testcase_15 AC 113 ms
12,416 KB
testcase_16 AC 289 ms
13,952 KB
testcase_17 AC 219 ms
14,336 KB
testcase_18 AC 478 ms
19,584 KB
testcase_19 AC 188 ms
14,080 KB
testcase_20 AC 565 ms
19,328 KB
testcase_21 AC 540 ms
20,608 KB
testcase_22 AC 409 ms
18,816 KB
testcase_23 AC 453 ms
18,944 KB
testcase_24 AC 496 ms
19,072 KB
testcase_25 AC 116 ms
12,416 KB
testcase_26 AC 358 ms
16,000 KB
testcase_27 AC 279 ms
14,848 KB
testcase_28 AC 694 ms
21,120 KB
testcase_29 AC 696 ms
21,120 KB
testcase_30 AC 695 ms
21,248 KB
testcase_31 AC 701 ms
21,376 KB
testcase_32 AC 702 ms
21,120 KB
testcase_33 AC 692 ms
21,248 KB
testcase_34 AC 693 ms
21,120 KB
testcase_35 AC 703 ms
21,248 KB
testcase_36 AC 699 ms
21,248 KB
testcase_37 AC 701 ms
21,376 KB
testcase_38 AC 698 ms
21,248 KB
testcase_39 AC 703 ms
21,120 KB
testcase_40 AC 844 ms
21,120 KB
testcase_41 AC 725 ms
21,120 KB
testcase_42 AC 708 ms
21,248 KB
testcase_43 AC 720 ms
21,120 KB
testcase_44 AC 737 ms
21,376 KB
testcase_45 AC 703 ms
21,504 KB
testcase_46 AC 708 ms
21,120 KB
testcase_47 AC 690 ms
21,120 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - m
Syntax OK

ソースコード

diff #

n, m = gets.split(" ").map{|s| s.to_i}

a = []

n.times {
	a << gets.split(" ").map{|s| s.to_i}.sum
}

dp = Array.new(n+1) {Array.new(n+1, -Float::INFINITY)}

dp[0][0] = 0

1.upto(n) {|i|
	dp[i][0] = 0
	1.upto(n) {|j|
		dp[i][j] = [dp[i-1][j], dp[i-1][j-1] + (j % 2 == 1 ? a[i-1] : -a[i-1])].max
	}
}

puts dp[n].max
0