結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 101 ms
76,116 KB
testcase_01 WA -
testcase_02 AC 505 ms
78,072 KB
testcase_03 AC 361 ms
77,736 KB
testcase_04 AC 389 ms
77,376 KB
testcase_05 WA -
testcase_06 AC 342 ms
77,660 KB
testcase_07 AC 388 ms
77,060 KB
testcase_08 WA -
testcase_09 AC 451 ms
77,536 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 460 ms
77,796 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 283 ms
76,884 KB
testcase_17 AC 410 ms
77,200 KB
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 384 ms
77,388 KB
testcase_21 AC 315 ms
77,300 KB
testcase_22 WA -
testcase_23 AC 339 ms
77,032 KB
testcase_24 WA -
testcase_25 AC 409 ms
78,084 KB
testcase_26 WA -
testcase_27 AC 378 ms
77,872 KB
testcase_28 AC 340 ms
76,988 KB
testcase_29 WA -
testcase_30 WA -
testcase_31 AC 983 ms
77,868 KB
testcase_32 AC 986 ms
77,076 KB
testcase_33 AC 1,014 ms
77,496 KB
testcase_34 AC 984 ms
76,828 KB
testcase_35 AC 986 ms
77,484 KB
testcase_36 AC 69 ms
71,888 KB
testcase_37 AC 42 ms
55,260 KB
testcase_38 AC 107 ms
76,304 KB
testcase_39 AC 95 ms
75,804 KB
testcase_40 AC 83 ms
75,988 KB
testcase_41 AC 976 ms
76,460 KB
testcase_42 WA -
testcase_43 AC 426 ms
77,492 KB
testcase_44 AC 356 ms
76,952 KB
testcase_45 AC 357 ms
76,668 KB
testcase_46 AC 338 ms
77,416 KB
testcase_47 AC 173 ms
76,204 KB
testcase_48 AC 39 ms
53,048 KB
testcase_49 AC 39 ms
52,548 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