結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 MizarMizar
提出日時 2023-07-07 19:40:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 156 ms / 2,000 ms
コード長 672 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 82,460 KB
実行使用メモリ 116,748 KB
最終ジャッジ日時 2024-10-06 01:40:55
合計ジャッジ時間 4,756 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,404 KB
testcase_01 AC 42 ms
59,036 KB
testcase_02 AC 42 ms
59,512 KB
testcase_03 AC 45 ms
60,800 KB
testcase_04 AC 41 ms
59,284 KB
testcase_05 AC 43 ms
59,364 KB
testcase_06 AC 38 ms
52,404 KB
testcase_07 AC 38 ms
53,168 KB
testcase_08 AC 42 ms
52,624 KB
testcase_09 AC 92 ms
97,748 KB
testcase_10 AC 42 ms
59,976 KB
testcase_11 AC 38 ms
53,376 KB
testcase_12 AC 38 ms
53,500 KB
testcase_13 AC 41 ms
59,596 KB
testcase_14 AC 40 ms
59,380 KB
testcase_15 AC 38 ms
53,892 KB
testcase_16 AC 37 ms
52,944 KB
testcase_17 AC 41 ms
59,312 KB
testcase_18 AC 42 ms
59,508 KB
testcase_19 AC 43 ms
59,600 KB
testcase_20 AC 37 ms
53,200 KB
testcase_21 AC 38 ms
52,312 KB
testcase_22 AC 42 ms
60,344 KB
testcase_23 AC 44 ms
59,988 KB
testcase_24 AC 69 ms
72,668 KB
testcase_25 AC 70 ms
72,048 KB
testcase_26 AC 70 ms
72,868 KB
testcase_27 AC 70 ms
72,208 KB
testcase_28 AC 69 ms
72,380 KB
testcase_29 AC 108 ms
91,536 KB
testcase_30 AC 84 ms
89,280 KB
testcase_31 AC 106 ms
91,832 KB
testcase_32 AC 106 ms
92,112 KB
testcase_33 AC 106 ms
91,272 KB
testcase_34 AC 156 ms
116,748 KB
testcase_35 AC 151 ms
114,280 KB
testcase_36 AC 147 ms
112,224 KB
testcase_37 AC 153 ms
116,056 KB
testcase_38 AC 154 ms
115,180 KB
testcase_39 AC 70 ms
77,752 KB
testcase_40 AC 61 ms
72,444 KB
testcase_41 AC 67 ms
74,912 KB
testcase_42 AC 57 ms
71,696 KB
testcase_43 AC 64 ms
73,588 KB
testcase_44 AC 47 ms
60,220 KB
testcase_45 AC 52 ms
65,212 KB
testcase_46 AC 45 ms
60,856 KB
testcase_47 AC 43 ms
59,664 KB
testcase_48 AC 51 ms
65,432 KB
testcase_49 AC 38 ms
53,264 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
p = min(m, max(a1, a2, a3))
dp = [0] * m
r = 0
for i in range(p):
	dp[i] = r = max(
		dp[i - a1] + b1 if i >= a1 else 0,
		dp[i - a2] + b2 if i >= a2 else 0,
		dp[i - a3] + b3 if i >= a3 else 0,
		r,
	)
for i in range(p, m):
	dp[i] = r = max(
		dp[i - a1] + b1,
		dp[i - a2] + b2,
		dp[i - a3] + b3,
		r,
	)
print(r + w * b1)
0