結果

問題 No.2390 Udon Coupon (Hard)
ユーザー mymelochanmymelochan
提出日時 2023-07-21 23:18:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,291 bytes
コンパイル時間 276 ms
コンパイル使用メモリ 82,148 KB
実行使用メモリ 146,176 KB
最終ジャッジ日時 2024-09-22 00:48:00
合計ジャッジ時間 8,197 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
62,208 KB
testcase_01 AC 48 ms
63,616 KB
testcase_02 AC 153 ms
145,604 KB
testcase_03 AC 221 ms
145,984 KB
testcase_04 AC 246 ms
145,536 KB
testcase_05 AC 47 ms
62,080 KB
testcase_06 WA -
testcase_07 AC 41 ms
54,272 KB
testcase_08 AC 40 ms
54,400 KB
testcase_09 AC 203 ms
135,008 KB
testcase_10 AC 47 ms
62,208 KB
testcase_11 AC 46 ms
63,232 KB
testcase_12 AC 45 ms
61,696 KB
testcase_13 AC 47 ms
61,824 KB
testcase_14 AC 49 ms
63,104 KB
testcase_15 AC 50 ms
64,000 KB
testcase_16 AC 49 ms
63,232 KB
testcase_17 AC 45 ms
62,720 KB
testcase_18 AC 47 ms
62,976 KB
testcase_19 AC 48 ms
62,208 KB
testcase_20 AC 39 ms
54,528 KB
testcase_21 AC 39 ms
54,656 KB
testcase_22 AC 147 ms
134,016 KB
testcase_23 AC 144 ms
132,096 KB
testcase_24 AC 180 ms
134,140 KB
testcase_25 AC 186 ms
133,376 KB
testcase_26 AC 183 ms
135,500 KB
testcase_27 AC 185 ms
134,224 KB
testcase_28 AC 184 ms
139,264 KB
testcase_29 AC 198 ms
135,296 KB
testcase_30 AC 223 ms
146,048 KB
testcase_31 AC 199 ms
136,956 KB
testcase_32 AC 191 ms
135,936 KB
testcase_33 AC 224 ms
146,176 KB
testcase_34 AC 203 ms
135,808 KB
testcase_35 AC 198 ms
135,256 KB
testcase_36 AC 194 ms
136,320 KB
testcase_37 AC 199 ms
137,216 KB
testcase_38 AC 215 ms
145,964 KB
testcase_39 AC 101 ms
92,288 KB
testcase_40 AC 156 ms
133,504 KB
testcase_41 AC 195 ms
133,976 KB
testcase_42 AC 183 ms
132,308 KB
testcase_43 AC 202 ms
134,784 KB
testcase_44 AC 168 ms
134,400 KB
testcase_45 AC 176 ms
134,528 KB
testcase_46 AC 153 ms
140,880 KB
testcase_47 AC 174 ms
135,168 KB
testcase_48 AC 177 ms
133,632 KB
testcase_49 AC 44 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#############################################################

import sys
sys.setrecursionlimit(10**7)

from heapq import heappop,heappush
from collections import deque,defaultdict,Counter
from bisect import bisect_left, bisect_right
from itertools import product,combinations,permutations

ipt = sys.stdin.readline

def iin():
    return int(ipt())
def lmin():
    return list(map(int,ipt().split()))

MOD = 998244353
inf = 1<<60
#############################################################

M = 3000**2

N = iin()
A1,B1 = lmin()
A2,B2 = lmin()
A3,B3 = lmin()

if N < M:
    dp = [-inf]*(N+1)
    dp[0] = 0
    for i in range(1,N+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)
    print(max(dp))
else:
    L = N-M
    r = (L+A1-1)//A1
    t = r*A1
    
    dp = [-inf]*(M+1)
    dp[t-L] = B1*r

    r = (L+A2-1)//A2
    t = r*A2
    
    dp[t-L] = B2*r

    r = (L+A3-1)//A3
    t = r*A3

    dp[t-L] = B3*r

    for i in range(1,M+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)
    print(max(dp))
0