結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-07 20:11:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,424 ms / 2,000 ms
コード長 459 bytes
コンパイル時間 123 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-06 01:43:33
合計ジャッジ時間 20,299 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 89 ms
12,160 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 89 ms
12,160 KB
testcase_03 AC 91 ms
12,160 KB
testcase_04 AC 92 ms
12,160 KB
testcase_05 AC 87 ms
12,160 KB
testcase_06 AC 86 ms
12,160 KB
testcase_07 AC 86 ms
12,288 KB
testcase_08 AC 86 ms
12,032 KB
testcase_09 AC 971 ms
12,160 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 87 ms
12,032 KB
testcase_12 AC 86 ms
12,032 KB
testcase_13 AC 88 ms
12,288 KB
testcase_14 AC 89 ms
12,160 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 87 ms
12,288 KB
testcase_17 AC 88 ms
12,160 KB
testcase_18 AC 88 ms
12,160 KB
testcase_19 AC 88 ms
12,160 KB
testcase_20 AC 87 ms
12,032 KB
testcase_21 AC 87 ms
12,032 KB
testcase_22 AC 90 ms
12,160 KB
testcase_23 AC 91 ms
12,160 KB
testcase_24 AC 362 ms
12,032 KB
testcase_25 AC 379 ms
12,160 KB
testcase_26 AC 374 ms
12,160 KB
testcase_27 AC 381 ms
12,032 KB
testcase_28 AC 347 ms
12,160 KB
testcase_29 AC 810 ms
12,160 KB
testcase_30 AC 731 ms
12,160 KB
testcase_31 AC 811 ms
12,288 KB
testcase_32 AC 812 ms
12,160 KB
testcase_33 AC 788 ms
12,032 KB
testcase_34 AC 1,424 ms
12,032 KB
testcase_35 AC 1,349 ms
12,032 KB
testcase_36 AC 1,316 ms
12,032 KB
testcase_37 AC 1,390 ms
12,032 KB
testcase_38 AC 1,360 ms
12,032 KB
testcase_39 AC 459 ms
12,288 KB
testcase_40 AC 380 ms
12,288 KB
testcase_41 AC 448 ms
12,160 KB
testcase_42 AC 377 ms
12,160 KB
testcase_43 AC 404 ms
12,160 KB
testcase_44 AC 118 ms
12,032 KB
testcase_45 AC 219 ms
12,160 KB
testcase_46 AC 109 ms
12,160 KB
testcase_47 AC 100 ms
12,032 KB
testcase_48 AC 218 ms
12,160 KB
testcase_49 AC 87 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a1, b1 = gets.split.map(&:to_i)
a2, b2 = gets.split.map(&:to_i)
a3, b3 = gets.split.map(&:to_i)

a1, b1, a2, b2 = a2, b2, a1, b1 if a2 * b1 < a1 * b2
a1, b1, a3, b3 = a3, b3, a1, b1 if a3 * b1 < a1 * b3

w = [n / a1 - a2 - a3, 0].max
m = n - w * a1
dp = Array.new(2048, -1 << 60)
r = 0
(m + 1).times do |i|
	dp[i & 2047] = r = [
		dp[(i - a1) & 2047] + b1,
		dp[(i - a2) & 2047] + b2,
		dp[(i - a3) & 2047] + b3,
		r
	].max
end

puts r + w * b1
0