結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー mkawa2mkawa2
提出日時 2023-05-19 22:41:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,777 bytes
コンパイル時間 170 ms
コンパイル使用メモリ 81,948 KB
実行使用メモリ 76,032 KB
最終ジャッジ日時 2024-05-10 06:08:17
合計ジャッジ時間 6,343 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
64,000 KB
testcase_01 AC 107 ms
75,940 KB
testcase_02 AC 117 ms
76,008 KB
testcase_03 WA -
testcase_04 AC 104 ms
75,520 KB
testcase_05 AC 99 ms
74,752 KB
testcase_06 AC 86 ms
75,136 KB
testcase_07 AC 90 ms
75,436 KB
testcase_08 AC 91 ms
75,376 KB
testcase_09 WA -
testcase_10 AC 89 ms
74,880 KB
testcase_11 AC 99 ms
75,516 KB
testcase_12 AC 103 ms
75,264 KB
testcase_13 AC 115 ms
75,520 KB
testcase_14 AC 112 ms
75,468 KB
testcase_15 AC 102 ms
75,264 KB
testcase_16 AC 93 ms
75,648 KB
testcase_17 AC 101 ms
75,264 KB
testcase_18 AC 106 ms
75,420 KB
testcase_19 AC 109 ms
75,880 KB
testcase_20 AC 106 ms
75,392 KB
testcase_21 WA -
testcase_22 AC 106 ms
75,572 KB
testcase_23 AC 93 ms
75,392 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 AC 98 ms
75,532 KB
testcase_29 AC 111 ms
75,316 KB
testcase_30 WA -
testcase_31 AC 128 ms
75,388 KB
testcase_32 AC 147 ms
75,520 KB
testcase_33 AC 133 ms
75,264 KB
testcase_34 AC 127 ms
75,836 KB
testcase_35 AC 136 ms
75,136 KB
testcase_36 AC 49 ms
61,056 KB
testcase_37 AC 39 ms
52,480 KB
testcase_38 AC 55 ms
63,616 KB
testcase_39 AC 47 ms
60,032 KB
testcase_40 AC 45 ms
60,288 KB
testcase_41 AC 105 ms
75,264 KB
testcase_42 AC 97 ms
74,880 KB
testcase_43 AC 94 ms
74,624 KB
testcase_44 AC 89 ms
75,264 KB
testcase_45 AC 87 ms
75,008 KB
testcase_46 AC 83 ms
75,008 KB
testcase_47 AC 55 ms
69,760 KB
testcase_48 AC 47 ms
60,416 KB
testcase_49 AC 65 ms
74,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = (1 << 63)-1
md = 10**9+7
# md = 998244353

def solve():
    a, b, c = LI()
    x, y, z, w = LI()
    ans = 0
    if x+y+z >= w*2:
        pre = 0
        for _ in range(2):
            for i in range(min(a, b)+1):
                j = min(b-i, c)
                k = min(a-i, c-j)
                cur = x*i+y*j+z*k+pre
                if cur > ans: ans = cur
                k = min(a-i, c)
                j = min(b-i, c-k)
                cur = x*i+y*j+z*k+pre
                if cur > ans: ans = cur
            if a and b and c:
                a, b, c = a-1, b-1, c-1
                pre = w
    else:
        for l in range(min(a, b, c)+1):
            i = min(a-l, b-l)
            j = min(b-l-i, c-l)
            cur = x*i+y*j+w*l
            if cur > ans: ans = cur

            j = min(b-l, c-l)
            k = min(c-l-j, a-l)
            cur = y*j+z*k+w*l
            if cur > ans: ans = cur

            i = min(a-l, b-l)
            k = min(a-l-i, c-l)
            cur = x*i+z*k+w*l
            if cur > ans: ans = cur
    print(ans)

for _ in range(II()): solve()
0