結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-07 20:14:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 529 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,724 KB
実行使用メモリ 64,764 KB
最終ジャッジ日時 2024-10-06 01:42:38
合計ジャッジ時間 4,265 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,272 KB
testcase_01 AC 43 ms
59,688 KB
testcase_02 AC 40 ms
59,752 KB
testcase_03 AC 43 ms
60,104 KB
testcase_04 AC 39 ms
59,500 KB
testcase_05 AC 40 ms
60,828 KB
testcase_06 AC 38 ms
53,140 KB
testcase_07 AC 38 ms
52,200 KB
testcase_08 AC 35 ms
53,012 KB
testcase_09 AC 99 ms
61,940 KB
testcase_10 AC 40 ms
59,040 KB
testcase_11 AC 36 ms
52,624 KB
testcase_12 AC 34 ms
53,164 KB
testcase_13 AC 39 ms
58,836 KB
testcase_14 AC 39 ms
58,560 KB
testcase_15 AC 35 ms
52,824 KB
testcase_16 AC 35 ms
53,080 KB
testcase_17 AC 40 ms
59,592 KB
testcase_18 AC 39 ms
59,804 KB
testcase_19 AC 40 ms
60,060 KB
testcase_20 AC 35 ms
53,212 KB
testcase_21 AC 35 ms
53,284 KB
testcase_22 AC 39 ms
59,188 KB
testcase_23 AC 44 ms
59,856 KB
testcase_24 AC 60 ms
60,736 KB
testcase_25 AC 61 ms
60,564 KB
testcase_26 AC 61 ms
60,004 KB
testcase_27 AC 61 ms
60,208 KB
testcase_28 AC 59 ms
62,396 KB
testcase_29 AC 88 ms
60,804 KB
testcase_30 AC 73 ms
64,764 KB
testcase_31 AC 89 ms
62,384 KB
testcase_32 AC 88 ms
61,668 KB
testcase_33 AC 87 ms
63,108 KB
testcase_34 AC 126 ms
61,656 KB
testcase_35 AC 122 ms
61,440 KB
testcase_36 AC 115 ms
61,484 KB
testcase_37 AC 120 ms
62,356 KB
testcase_38 AC 126 ms
63,640 KB
testcase_39 AC 68 ms
60,840 KB
testcase_40 AC 48 ms
59,616 KB
testcase_41 AC 67 ms
60,612 KB
testcase_42 AC 52 ms
59,536 KB
testcase_43 AC 52 ms
59,544 KB
testcase_44 AC 40 ms
59,372 KB
testcase_45 AC 44 ms
58,664 KB
testcase_46 AC 40 ms
58,356 KB
testcase_47 AC 40 ms
59,088 KB
testcase_48 AC 45 ms
59,476 KB
testcase_49 AC 35 ms
53,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
[[a1, b1], [a2, b2], [a3, b3]] = [list(map(int, input().split())) for _ in range(3)]
amin, bmin = min(a1, a2, a3), min(b1, b2, b3)
assert n > 0 and amin > 0 and bmin > 0
if a2 * b1 < a1 * b2:
	a1, b1, a2, b2 = a2, b2, a1, b1
if a3 * b1 < a1 * b3:
	a1, b1, a3, b3 = a3, b3, a1, b1
w = max(n // a1 - a2 - a3, 0)
m = n - w * a1 + 1
dp = [-1 << 60] * 2048
r = 0
for i in range(m):
	dp[i & 2047] = r = max(
		dp[(i - a1) & 2047] + b1,
		dp[(i - a2) & 2047] + b2,
		dp[(i - a3) & 2047] + b3,
		r,
	)
print(r + w * b1)
0