結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー rlangevinrlangevin
提出日時 2023-05-19 22:22:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 201 ms / 3,000 ms
コード長 1,167 bytes
コンパイル時間 392 ms
コンパイル使用メモリ 82,160 KB
実行使用メモリ 78,016 KB
最終ジャッジ日時 2024-12-18 03:09:39
合計ジャッジ時間 8,543 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
66,056 KB
testcase_01 AC 146 ms
76,592 KB
testcase_02 AC 190 ms
78,016 KB
testcase_03 AC 168 ms
76,936 KB
testcase_04 AC 135 ms
76,316 KB
testcase_05 AC 126 ms
76,540 KB
testcase_06 AC 145 ms
76,612 KB
testcase_07 AC 133 ms
76,396 KB
testcase_08 AC 139 ms
77,184 KB
testcase_09 AC 153 ms
76,572 KB
testcase_10 AC 118 ms
76,560 KB
testcase_11 AC 135 ms
76,520 KB
testcase_12 AC 163 ms
76,640 KB
testcase_13 AC 191 ms
77,416 KB
testcase_14 AC 164 ms
76,964 KB
testcase_15 AC 143 ms
76,944 KB
testcase_16 AC 143 ms
76,980 KB
testcase_17 AC 143 ms
76,800 KB
testcase_18 AC 149 ms
76,820 KB
testcase_19 AC 136 ms
76,564 KB
testcase_20 AC 133 ms
76,600 KB
testcase_21 AC 153 ms
76,672 KB
testcase_22 AC 157 ms
76,848 KB
testcase_23 AC 163 ms
76,956 KB
testcase_24 AC 160 ms
76,756 KB
testcase_25 AC 172 ms
76,952 KB
testcase_26 AC 148 ms
76,748 KB
testcase_27 AC 146 ms
76,452 KB
testcase_28 AC 161 ms
76,692 KB
testcase_29 AC 162 ms
76,968 KB
testcase_30 AC 162 ms
76,944 KB
testcase_31 AC 188 ms
76,660 KB
testcase_32 AC 193 ms
76,812 KB
testcase_33 AC 167 ms
76,404 KB
testcase_34 AC 180 ms
76,400 KB
testcase_35 AC 201 ms
77,196 KB
testcase_36 AC 54 ms
64,784 KB
testcase_37 AC 38 ms
54,144 KB
testcase_38 AC 59 ms
66,772 KB
testcase_39 AC 53 ms
64,960 KB
testcase_40 AC 55 ms
64,676 KB
testcase_41 AC 119 ms
75,816 KB
testcase_42 AC 100 ms
73,612 KB
testcase_43 AC 129 ms
76,736 KB
testcase_44 AC 117 ms
76,648 KB
testcase_45 AC 130 ms
76,604 KB
testcase_46 AC 135 ms
76,480 KB
testcase_47 AC 54 ms
63,640 KB
testcase_48 AC 38 ms
53,068 KB
testcase_49 AC 40 ms
53,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T = int(input())
for _ in range(T):
    A, B, C = map(int, input().split())
    X, Y, Z, W = map(int, input().split())
    ans = 0
    for i in range(min(A, B, C) + 1):
        now = W * (i % 2) + max(2 * W, X + Y + Z) * (i // 2)
        tA, tB, tC = A - i, B - i, C - i
        now += X * min(tA, tB)
        tA, tB = A - min(A, B), B - min(A, B)
        if tA:
            now += Z * min(tA, tC)
        else:
            now += Y * min(tB, tC)
        ans = max(now, ans)
        
        now = W * (i % 2) + max(2 * W, X + Y + Z) * (i // 2)
        tA, tB, tC = A - i, B - i, C - i
        now += Y * min(tB, tC)
        tB, tC = B - min(B, C), C - min(B, C)
        if tB:
            now += X * min(tA, tB)
        else:
            now += Z * min(tA, tC)
        ans = max(now, ans)
        
        now = W * (i % 2) + max(2 * W, X + Y + Z) * (i // 2)
        tA, tB, tC = A - i, B - i, C - i
        now += Z * min(tA, tC)
        tA, tC = A - min(A, C), C - min(A, C)
        if tA:
            now += X * min(tA, tB)
        else:
            now += Y * min(tB, tC)
        ans = max(now, ans)
        
    print(ans)
0