結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 rin204rin204
提出日時 2024-04-07 15:45:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 407 ms / 2,000 ms
コード長 572 bytes
コンパイル時間 757 ms
コンパイル使用メモリ 82,584 KB
実行使用メモリ 105,144 KB
最終ジャッジ日時 2024-10-01 04:33:55
合計ジャッジ時間 8,660 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,816 KB
testcase_01 AC 48 ms
61,288 KB
testcase_02 AC 50 ms
63,700 KB
testcase_03 AC 54 ms
66,312 KB
testcase_04 AC 52 ms
63,580 KB
testcase_05 AC 50 ms
62,692 KB
testcase_06 AC 40 ms
51,880 KB
testcase_07 AC 40 ms
52,456 KB
testcase_08 AC 40 ms
52,692 KB
testcase_09 AC 378 ms
102,116 KB
testcase_10 AC 49 ms
62,936 KB
testcase_11 AC 45 ms
59,284 KB
testcase_12 AC 49 ms
63,640 KB
testcase_13 AC 50 ms
63,284 KB
testcase_14 AC 50 ms
63,512 KB
testcase_15 AC 42 ms
52,552 KB
testcase_16 AC 49 ms
62,860 KB
testcase_17 AC 51 ms
62,780 KB
testcase_18 AC 50 ms
62,956 KB
testcase_19 AC 51 ms
63,460 KB
testcase_20 AC 40 ms
53,056 KB
testcase_21 AC 39 ms
52,368 KB
testcase_22 AC 53 ms
64,424 KB
testcase_23 AC 53 ms
64,024 KB
testcase_24 AC 135 ms
82,100 KB
testcase_25 AC 140 ms
82,792 KB
testcase_26 AC 132 ms
81,736 KB
testcase_27 AC 137 ms
82,732 KB
testcase_28 AC 130 ms
81,376 KB
testcase_29 AC 251 ms
91,948 KB
testcase_30 AC 229 ms
89,104 KB
testcase_31 AC 255 ms
91,912 KB
testcase_32 AC 243 ms
91,276 KB
testcase_33 AC 244 ms
90,540 KB
testcase_34 AC 407 ms
105,144 KB
testcase_35 AC 391 ms
103,400 KB
testcase_36 AC 377 ms
102,816 KB
testcase_37 AC 404 ms
104,296 KB
testcase_38 AC 389 ms
103,164 KB
testcase_39 AC 184 ms
85,948 KB
testcase_40 AC 133 ms
82,492 KB
testcase_41 AC 150 ms
83,532 KB
testcase_42 AC 128 ms
82,044 KB
testcase_43 AC 180 ms
85,664 KB
testcase_44 AC 142 ms
82,772 KB
testcase_45 AC 115 ms
80,632 KB
testcase_46 AC 64 ms
76,164 KB
testcase_47 AC 113 ms
80,584 KB
testcase_48 AC 145 ms
83,108 KB
testcase_49 AC 38 ms
52,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a1, b1 = map(int, input().split())
a2, b2 = map(int, input().split())
a3, b3 = map(int, input().split())

ma = max(a1 * a2, a2 * a3, a3 * a1)
ma = min(ma, n)
dp = [0] * (ma + 1)
for i in range(ma + 1):
    if i >= a1:
        dp[i] = max(dp[i], dp[i - a1] + b1)
    if i >= a2:
        dp[i] = max(dp[i], dp[i - a2] + b2)
    if i >= a3:
        dp[i] = max(dp[i], dp[i - a3] + b3)

ans = 0
for i in range(ma + 1):
    for a, b in [(a1, b1), (a2, b2), (a3, b3)]:
        tot = dp[i]
        tot += (n - i) // a * b
        ans = max(ans, tot)

print(ans)
0