結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-04 03:35:47
言語 Ruby
(3.3.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-06 01:38:10
合計ジャッジ時間 8,509 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
12,288 KB
testcase_01 AC 80 ms
12,160 KB
testcase_02 AC 78 ms
12,032 KB
testcase_03 AC 76 ms
12,160 KB
testcase_04 AC 73 ms
12,288 KB
testcase_05 AC 131 ms
12,288 KB
testcase_06 AC 74 ms
12,160 KB
testcase_07 AC 77 ms
12,288 KB
testcase_08 AC 74 ms
12,160 KB
testcase_09 AC 222 ms
12,032 KB
testcase_10 AC 76 ms
12,160 KB
testcase_11 AC 77 ms
12,288 KB
testcase_12 AC 75 ms
12,032 KB
testcase_13 AC 76 ms
12,032 KB
testcase_14 AC 76 ms
12,288 KB
testcase_15 AC 76 ms
12,288 KB
testcase_16 AC 74 ms
12,160 KB
testcase_17 AC 75 ms
12,288 KB
testcase_18 AC 76 ms
12,160 KB
testcase_19 AC 77 ms
12,288 KB
testcase_20 AC 80 ms
12,160 KB
testcase_21 AC 81 ms
12,288 KB
testcase_22 AC 81 ms
12,032 KB
testcase_23 AC 78 ms
12,160 KB
testcase_24 AC 134 ms
12,160 KB
testcase_25 AC 131 ms
12,032 KB
testcase_26 AC 139 ms
12,288 KB
testcase_27 AC 137 ms
12,160 KB
testcase_28 AC 134 ms
12,288 KB
testcase_29 AC 239 ms
12,160 KB
testcase_30 AC 226 ms
12,288 KB
testcase_31 AC 235 ms
12,160 KB
testcase_32 AC 241 ms
12,032 KB
testcase_33 AC 243 ms
12,288 KB
testcase_34 AC 378 ms
12,160 KB
testcase_35 AC 373 ms
12,032 KB
testcase_36 AC 368 ms
12,160 KB
testcase_37 AC 373 ms
12,160 KB
testcase_38 AC 377 ms
12,288 KB
testcase_39 AC 243 ms
12,032 KB
testcase_40 AC 171 ms
12,160 KB
testcase_41 AC 221 ms
12,032 KB
testcase_42 AC 170 ms
12,288 KB
testcase_43 AC 157 ms
12,032 KB
testcase_44 AC 77 ms
12,288 KB
testcase_45 AC 89 ms
12,288 KB
testcase_46 AC 74 ms
12,160 KB
testcase_47 AC 73 ms
12,032 KB
testcase_48 AC 82 ms
12,160 KB
testcase_49 AC 73 ms
12,160 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)

exit(false) unless n > 0 && a1 > 0 && a2 > 0 && a3 > 0 && b1 > 0 && b2 > 0 && b3 > 0

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

r, i, s = 0, 0, n
while i < a1 && s >= 0 do
	j, t = 0, s
	while j < a1 && t >= 0 do
		r = [r, t / a1 * b1 + i * b2 + j * b3].max
		j += 1
		t -= a3
	end
	i += 1
	s -= a2
end

puts r
0