結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー titiatitia
提出日時 2023-05-20 03:15:30
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,505 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 82,564 KB
実行使用メモリ 78,332 KB
最終ジャッジ日時 2024-06-01 02:47:21
合計ジャッジ時間 22,944 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
75,776 KB
testcase_01 WA -
testcase_02 AC 482 ms
77,948 KB
testcase_03 AC 370 ms
77,612 KB
testcase_04 AC 399 ms
77,236 KB
testcase_05 WA -
testcase_06 AC 346 ms
77,656 KB
testcase_07 AC 387 ms
77,580 KB
testcase_08 WA -
testcase_09 AC 461 ms
77,412 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 476 ms
77,540 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 293 ms
76,928 KB
testcase_17 AC 413 ms
77,712 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 381 ms
77,648 KB
testcase_21 AC 326 ms
77,300 KB
testcase_22 WA -
testcase_23 AC 343 ms
77,544 KB
testcase_24 WA -
testcase_25 AC 418 ms
77,952 KB
testcase_26 WA -
testcase_27 AC 386 ms
77,868 KB
testcase_28 AC 346 ms
76,992 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 989 ms
78,324 KB
testcase_32 AC 983 ms
77,056 KB
testcase_33 AC 1,001 ms
77,488 KB
testcase_34 AC 985 ms
76,800 KB
testcase_35 AC 980 ms
77,356 KB
testcase_36 AC 73 ms
71,040 KB
testcase_37 AC 44 ms
54,400 KB
testcase_38 AC 110 ms
76,288 KB
testcase_39 AC 96 ms
75,776 KB
testcase_40 AC 86 ms
76,288 KB
testcase_41 AC 982 ms
76,416 KB
testcase_42 WA -
testcase_43 AC 429 ms
77,480 KB
testcase_44 AC 331 ms
77,232 KB
testcase_45 AC 361 ms
77,332 KB
testcase_46 AC 328 ms
77,412 KB
testcase_47 AC 171 ms
75,972 KB
testcase_48 AC 41 ms
51,840 KB
testcase_49 AC 42 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

T=int(input())
for tests in range(T):
    A0,B0,C0=map(int,input().split())
    X,Y,Z,W=map(int,input().split())
    LANS=0

    # Wを使う回数で全探索
    for i in range(min(A0,B0,C0)+1):
        ANS=i*W
        A=A0-i
        B=B0-i
        C=C0-i

        # Xを使う回数で三分探索
        MIN=0
        MAX=min(A,B)

        while MAX>MIN+3:
            mid1=MIN+(MAX-MIN)//3
            mid2=MIN+(MAX-MIN)//3*2

            ANS1=ANS+mid1*X
            A1=A-mid1
            B1=B-mid1
            C1=C

            ANS11=ANS1+min(B1,C1)*Y
            ANS11+=min(A1,C1-min(B1,C1))*Z

            ANS12=ANS1+min(A1,C1)*Z
            ANS12+=min(B1,C1-min(A1,C1))*Y

            ANS2=ANS+mid2*X
            A1=A-mid2
            B1=B-mid2
            C1=C

            ANS21=ANS2+min(B1,C1)*Y
            ANS21+=min(A1,C1-min(B1,C1))*Z

            ANS22=ANS1+min(A1,C1)*Z
            ANS22+=min(B1,C1-min(A1,C1))*Y

            if max(ANS11,ANS12)>max(ANS21,ANS22):
                MAX=mid2
            else:
                MIN=mid1

        #print(i,MIN,MAX)

        for j in range(MIN,MAX+1):
            ANS1=ANS+j*X
            A1=A-j
            B1=B-j
            C1=C

            ANS11=ANS1+min(B1,C1)*Y
            ANS11+=min(A1,C1-min(B1,C1))*Z

            ANS12=ANS1+min(A1,C1)*Z
            ANS12+=min(B1,C1-min(A1,C1))*Y

            LANS=max(LANS,ANS11,ANS12)

    print(LANS)

            

            
            

            
0