結果

問題 No.2390 Udon Coupon (Hard)
ユーザー rikein12rikein12
提出日時 2023-11-03 20:24:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 166 ms / 2,000 ms
コード長 397 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,384 KB
実行使用メモリ 92,928 KB
最終ジャッジ日時 2024-09-25 18:46:52
合計ジャッジ時間 7,317 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
60,160 KB
testcase_01 AC 44 ms
59,776 KB
testcase_02 AC 136 ms
90,496 KB
testcase_03 AC 129 ms
90,880 KB
testcase_04 AC 132 ms
90,496 KB
testcase_05 AC 43 ms
59,008 KB
testcase_06 AC 129 ms
89,984 KB
testcase_07 AC 38 ms
51,584 KB
testcase_08 AC 38 ms
51,968 KB
testcase_09 AC 163 ms
91,392 KB
testcase_10 AC 47 ms
59,776 KB
testcase_11 AC 44 ms
58,496 KB
testcase_12 AC 47 ms
60,672 KB
testcase_13 AC 43 ms
59,392 KB
testcase_14 AC 46 ms
59,776 KB
testcase_15 AC 41 ms
58,752 KB
testcase_16 AC 46 ms
60,032 KB
testcase_17 AC 42 ms
59,008 KB
testcase_18 AC 43 ms
58,880 KB
testcase_19 AC 43 ms
59,392 KB
testcase_20 AC 35 ms
51,840 KB
testcase_21 AC 35 ms
52,224 KB
testcase_22 AC 133 ms
90,496 KB
testcase_23 AC 133 ms
90,496 KB
testcase_24 AC 133 ms
91,392 KB
testcase_25 AC 128 ms
90,880 KB
testcase_26 AC 129 ms
91,392 KB
testcase_27 AC 133 ms
90,880 KB
testcase_28 AC 131 ms
91,264 KB
testcase_29 AC 163 ms
92,800 KB
testcase_30 AC 161 ms
92,672 KB
testcase_31 AC 165 ms
92,800 KB
testcase_32 AC 158 ms
92,544 KB
testcase_33 AC 164 ms
92,416 KB
testcase_34 AC 163 ms
92,544 KB
testcase_35 AC 166 ms
92,544 KB
testcase_36 AC 164 ms
92,160 KB
testcase_37 AC 163 ms
92,160 KB
testcase_38 AC 161 ms
92,928 KB
testcase_39 AC 123 ms
88,832 KB
testcase_40 AC 130 ms
91,008 KB
testcase_41 AC 133 ms
91,008 KB
testcase_42 AC 138 ms
91,136 KB
testcase_43 AC 131 ms
91,264 KB
testcase_44 AC 131 ms
90,880 KB
testcase_45 AC 130 ms
91,264 KB
testcase_46 AC 127 ms
90,112 KB
testcase_47 AC 129 ms
90,752 KB
testcase_48 AC 135 ms
91,520 KB
testcase_49 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
M = min(4000000,N)
DP = [- 10**9]*(M+1)
DP[0] = 0
A = [list(map(int,input().split())) for i in range(3)]
A = [(b/a,a,b) for a,b in A]

A.sort(key=lambda x:x[0])

_,a,b = A[0]

i = 1
while a*i <= M:
    DP[a*i] = b*i
    i+=1

_,a,b = A[1]
ans = 0
for i in range(M+1):
    if i>=a:
        DP[i] = max(DP[i-a]+b,DP[i])
    ans = max(ans,((N-i)//A[2][1])*A[2][2]+DP[i])

print(ans)
0