結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー ShirotsumeShirotsume
提出日時 2023-03-15 21:23:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 341 ms / 3,000 ms
コード長 1,020 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 77,528 KB
最終ジャッジ日時 2024-09-18 08:54:15
合計ジャッジ時間 11,274 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
75,904 KB
testcase_01 AC 207 ms
76,928 KB
testcase_02 AC 229 ms
77,184 KB
testcase_03 AC 205 ms
76,672 KB
testcase_04 AC 218 ms
76,544 KB
testcase_05 AC 174 ms
76,672 KB
testcase_06 AC 186 ms
77,184 KB
testcase_07 AC 184 ms
76,800 KB
testcase_08 AC 195 ms
76,416 KB
testcase_09 AC 208 ms
76,416 KB
testcase_10 AC 169 ms
76,928 KB
testcase_11 AC 197 ms
76,928 KB
testcase_12 AC 219 ms
77,056 KB
testcase_13 AC 234 ms
76,928 KB
testcase_14 AC 198 ms
76,544 KB
testcase_15 AC 167 ms
76,544 KB
testcase_16 AC 179 ms
76,416 KB
testcase_17 AC 202 ms
77,312 KB
testcase_18 AC 209 ms
76,928 KB
testcase_19 AC 164 ms
76,160 KB
testcase_20 AC 193 ms
77,184 KB
testcase_21 AC 188 ms
76,928 KB
testcase_22 AC 193 ms
77,312 KB
testcase_23 AC 206 ms
77,056 KB
testcase_24 AC 232 ms
77,312 KB
testcase_25 AC 211 ms
76,928 KB
testcase_26 AC 217 ms
76,800 KB
testcase_27 AC 200 ms
76,544 KB
testcase_28 AC 209 ms
76,544 KB
testcase_29 AC 218 ms
77,196 KB
testcase_30 AC 198 ms
76,288 KB
testcase_31 AC 341 ms
77,056 KB
testcase_32 AC 337 ms
77,440 KB
testcase_33 AC 313 ms
77,528 KB
testcase_34 AC 301 ms
76,788 KB
testcase_35 AC 331 ms
77,216 KB
testcase_36 AC 68 ms
71,124 KB
testcase_37 AC 43 ms
54,152 KB
testcase_38 AC 85 ms
76,160 KB
testcase_39 AC 67 ms
69,992 KB
testcase_40 AC 66 ms
68,608 KB
testcase_41 AC 266 ms
76,544 KB
testcase_42 AC 259 ms
76,672 KB
testcase_43 AC 196 ms
77,056 KB
testcase_44 AC 156 ms
76,032 KB
testcase_45 AC 165 ms
76,928 KB
testcase_46 AC 171 ms
76,800 KB
testcase_47 AC 82 ms
75,520 KB
testcase_48 AC 43 ms
53,888 KB
testcase_49 AC 46 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import deque, Counter
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
for _ in range(ii()):
    r, g, b = mi()

    z, x, y, w = mi()
    ans = 0
    def check(i):
        global r, g, b, w, x, y, z
        ans = 0
        xyztime = i // 2
        wtime = i % 2
        r -= i
        g -= i 
        b -= i
        now = xyztime * max(2 * w, x + y + z) + wtime * w
        for _ in range(3):
                g1 = min(r, g)
                g2 = g-g1
                ans = max(ans, now + z * min(g1, r) + x * min(g2, b))
                g2 = min(g, b)
                g1 = g-g2
                ans = max(ans, now + z * min(g1, r) + x * min(g2, b))
                r, g, b = g, b, r
                x, y, z = y, z, x
        r += i
        g += i 
        b += i
        return ans


    for i in range(0, min(r, g, b) + 1):
        ans = max(ans, check(i))

    print(ans)
0