結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
12,288 KB
testcase_01 AC 72 ms
12,160 KB
testcase_02 AC 72 ms
12,288 KB
testcase_03 AC 74 ms
12,160 KB
testcase_04 AC 74 ms
12,032 KB
testcase_05 AC 124 ms
12,160 KB
testcase_06 AC 77 ms
12,288 KB
testcase_07 AC 73 ms
12,032 KB
testcase_08 AC 77 ms
12,288 KB
testcase_09 AC 203 ms
12,288 KB
testcase_10 AC 74 ms
12,160 KB
testcase_11 AC 73 ms
12,288 KB
testcase_12 AC 74 ms
12,160 KB
testcase_13 AC 75 ms
12,160 KB
testcase_14 AC 75 ms
12,160 KB
testcase_15 AC 74 ms
12,160 KB
testcase_16 AC 73 ms
12,288 KB
testcase_17 AC 73 ms
12,160 KB
testcase_18 AC 75 ms
12,160 KB
testcase_19 AC 75 ms
12,288 KB
testcase_20 AC 77 ms
12,160 KB
testcase_21 AC 74 ms
12,032 KB
testcase_22 AC 76 ms
12,032 KB
testcase_23 AC 75 ms
12,160 KB
testcase_24 AC 123 ms
12,288 KB
testcase_25 AC 124 ms
12,288 KB
testcase_26 AC 129 ms
12,160 KB
testcase_27 AC 130 ms
12,032 KB
testcase_28 AC 124 ms
12,160 KB
testcase_29 AC 212 ms
12,160 KB
testcase_30 AC 204 ms
12,032 KB
testcase_31 AC 209 ms
12,032 KB
testcase_32 AC 218 ms
12,160 KB
testcase_33 AC 213 ms
12,160 KB
testcase_34 AC 330 ms
12,032 KB
testcase_35 AC 327 ms
12,160 KB
testcase_36 AC 315 ms
12,160 KB
testcase_37 AC 323 ms
12,288 KB
testcase_38 AC 325 ms
12,032 KB
testcase_39 AC 209 ms
12,160 KB
testcase_40 AC 154 ms
12,160 KB
testcase_41 AC 202 ms
12,160 KB
testcase_42 AC 151 ms
12,160 KB
testcase_43 AC 144 ms
12,032 KB
testcase_44 AC 79 ms
12,032 KB
testcase_45 AC 88 ms
12,288 KB
testcase_46 AC 78 ms
12,160 KB
testcase_47 AC 73 ms
12,032 KB
testcase_48 AC 82 ms
12,288 KB
testcase_49 AC 75 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)

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

a1b2, a1b3 = a1 * b2, a1 * b3
r, p, s = 0, 0, n
while p < a1b2 && s >= 0 do
	q, t = 0, s
	while q < a1b3 && t >= 0 do
		r = [r, t / a1 * b1 + p + q].max
		t -= a3
		q += b3
	end
	s -= a2
	p += b2
end

puts r
0