結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー navel_tosnavel_tos
提出日時 2023-05-20 19:27:51
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,138 bytes
コンパイル時間 1,022 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 75,648 KB
最終ジャッジ日時 2024-12-21 11:43:19
合計ジャッジ時間 7,218 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
62,976 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 111 ms
75,064 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 100 ms
75,008 KB
testcase_08 AC 115 ms
74,752 KB
testcase_09 WA -
testcase_10 AC 99 ms
75,260 KB
testcase_11 AC 104 ms
75,136 KB
testcase_12 AC 106 ms
74,752 KB
testcase_13 WA -
testcase_14 AC 111 ms
75,416 KB
testcase_15 WA -
testcase_16 AC 94 ms
74,752 KB
testcase_17 AC 118 ms
75,008 KB
testcase_18 AC 100 ms
75,008 KB
testcase_19 WA -
testcase_20 AC 97 ms
75,008 KB
testcase_21 AC 100 ms
74,880 KB
testcase_22 WA -
testcase_23 AC 92 ms
75,136 KB
testcase_24 AC 109 ms
75,136 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 106 ms
75,520 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 140 ms
75,136 KB
testcase_32 AC 131 ms
74,808 KB
testcase_33 AC 137 ms
75,536 KB
testcase_34 AC 131 ms
75,188 KB
testcase_35 AC 148 ms
75,392 KB
testcase_36 AC 54 ms
60,032 KB
testcase_37 AC 44 ms
52,096 KB
testcase_38 AC 58 ms
62,208 KB
testcase_39 AC 56 ms
60,032 KB
testcase_40 AC 53 ms
60,160 KB
testcase_41 AC 150 ms
74,948 KB
testcase_42 AC 142 ms
75,112 KB
testcase_43 AC 89 ms
74,992 KB
testcase_44 AC 89 ms
74,916 KB
testcase_45 AC 85 ms
75,324 KB
testcase_46 AC 83 ms
75,392 KB
testcase_47 AC 64 ms
70,400 KB
testcase_48 AC 47 ms
58,240 KB
testcase_49 AC 53 ms
58,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder389E 夏の先取り

'''
方針は合っていそうなのでやりなおし。
添字ガチャにならないといいね。

base円を既に売り上げた状態で、「Wを一切売らないものとして」最大の売り上げを求める
関数を事前定義しよう。最初からこうすればよかったんだ。
'''
f=lambda:list(map(int,input().split()))

def yukicoder389E(A,B,C,X,Y,Z,base,sold=0):
    for x in range(min(A,B)+1):  #Xセットをx食売るときの最大売上を求める
        cnt=base + X*x; a,b,c=A-x,B-x,C
        if Y>Z:
            y=min(b,c); cnt+=Y*y; b-=y; c-=y
            if min(a,c): cnt+=Z*min(a,c)
        else:
            z=min(a,c); cnt+=Z*z; a-=z; c-=z
            if min(b,c): cnt+=Y*min(b,c)
        sold=max(sold,cnt)
    return sold

for _ in range(int(input())):
    A,B,C=f(); X,Y,Z,W=f(); ans=0; P=min(A,B,C)
    if 1: ans=max(ans,yukicoder389E(A,B,C,X,Y,Z,0))
    if P: ans=max(ans,yukicoder389E(A-1,B-1,C-1,X,Y,Z,W))
    if P: ans=max(ans,yukicoder389E(A-P+1,B-P+1,C-P+1,X,Y,Z,W*(P-1)))
    if P: ans=max(ans,yukicoder389E(A-P,B-P,C-P,X,Y,Z,W*P))
    print(ans)
0