結果

問題 No.2390 Udon Coupon (Hard)
ユーザー mymelochanmymelochan
提出日時 2023-07-21 23:19:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 252 ms / 2,000 ms
コード長 1,330 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 146,304 KB
最終ジャッジ日時 2024-10-06 01:57:13
合計ジャッジ時間 8,883 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
63,104 KB
testcase_01 AC 53 ms
63,616 KB
testcase_02 AC 176 ms
145,940 KB
testcase_03 AC 240 ms
146,160 KB
testcase_04 AC 234 ms
146,116 KB
testcase_05 AC 50 ms
63,020 KB
testcase_06 AC 160 ms
131,660 KB
testcase_07 AC 42 ms
54,860 KB
testcase_08 AC 38 ms
54,920 KB
testcase_09 AC 215 ms
135,224 KB
testcase_10 AC 48 ms
63,652 KB
testcase_11 AC 52 ms
64,044 KB
testcase_12 AC 48 ms
62,440 KB
testcase_13 AC 52 ms
63,416 KB
testcase_14 AC 52 ms
63,900 KB
testcase_15 AC 52 ms
65,204 KB
testcase_16 AC 48 ms
64,932 KB
testcase_17 AC 48 ms
63,068 KB
testcase_18 AC 50 ms
64,780 KB
testcase_19 AC 53 ms
64,992 KB
testcase_20 AC 48 ms
54,920 KB
testcase_21 AC 41 ms
54,564 KB
testcase_22 AC 165 ms
133,736 KB
testcase_23 AC 161 ms
132,468 KB
testcase_24 AC 204 ms
134,500 KB
testcase_25 AC 209 ms
133,888 KB
testcase_26 AC 224 ms
135,552 KB
testcase_27 AC 215 ms
134,652 KB
testcase_28 AC 219 ms
140,032 KB
testcase_29 AC 227 ms
135,936 KB
testcase_30 AC 252 ms
146,304 KB
testcase_31 AC 234 ms
137,088 KB
testcase_32 AC 228 ms
136,448 KB
testcase_33 AC 241 ms
146,176 KB
testcase_34 AC 227 ms
135,680 KB
testcase_35 AC 225 ms
135,808 KB
testcase_36 AC 222 ms
136,064 KB
testcase_37 AC 218 ms
137,728 KB
testcase_38 AC 234 ms
145,920 KB
testcase_39 AC 117 ms
92,928 KB
testcase_40 AC 180 ms
134,016 KB
testcase_41 AC 224 ms
134,400 KB
testcase_42 AC 203 ms
132,608 KB
testcase_43 AC 227 ms
135,168 KB
testcase_44 AC 219 ms
134,272 KB
testcase_45 AC 215 ms
134,912 KB
testcase_46 AC 178 ms
141,156 KB
testcase_47 AC 195 ms
135,808 KB
testcase_48 AC 203 ms
133,636 KB
testcase_49 AC 46 ms
54,400 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] = max(dp[t-L],B1*r)

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

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

    dp[t-L] = max(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