結果

問題 No.2309 [Cherry 5th Tune D] 夏の先取り
ユーザー ニックネームニックネーム
提出日時 2023-05-19 23:47:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 549 bytes
コンパイル時間 259 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-12-20 02:54:10
合計ジャッジ時間 65,948 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 181 ms
10,752 KB
testcase_01 AC 1,381 ms
10,752 KB
testcase_02 AC 1,140 ms
10,752 KB
testcase_03 AC 1,036 ms
10,752 KB
testcase_04 AC 933 ms
10,752 KB
testcase_05 AC 1,184 ms
10,752 KB
testcase_06 AC 866 ms
10,880 KB
testcase_07 AC 971 ms
10,752 KB
testcase_08 AC 1,366 ms
10,752 KB
testcase_09 AC 1,350 ms
10,880 KB
testcase_10 AC 1,098 ms
10,752 KB
testcase_11 AC 1,159 ms
10,880 KB
testcase_12 AC 1,324 ms
10,752 KB
testcase_13 AC 1,341 ms
10,752 KB
testcase_14 AC 1,136 ms
10,752 KB
testcase_15 AC 1,350 ms
10,752 KB
testcase_16 AC 731 ms
10,880 KB
testcase_17 AC 1,495 ms
10,752 KB
testcase_18 AC 1,421 ms
10,752 KB
testcase_19 AC 1,038 ms
10,880 KB
testcase_20 AC 1,378 ms
10,752 KB
testcase_21 AC 680 ms
10,752 KB
testcase_22 AC 790 ms
10,752 KB
testcase_23 AC 957 ms
10,880 KB
testcase_24 AC 1,306 ms
10,880 KB
testcase_25 AC 1,178 ms
10,752 KB
testcase_26 AC 1,506 ms
10,752 KB
testcase_27 AC 867 ms
10,752 KB
testcase_28 AC 989 ms
10,752 KB
testcase_29 AC 1,423 ms
10,752 KB
testcase_30 AC 1,318 ms
10,752 KB
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 TLE -
testcase_36 AC 55 ms
10,752 KB
testcase_37 AC 33 ms
10,752 KB
testcase_38 AC 50 ms
10,752 KB
testcase_39 AC 38 ms
10,752 KB
testcase_40 AC 39 ms
10,752 KB
testcase_41 TLE -
testcase_42 TLE -
testcase_43 AC 1,391 ms
10,752 KB
testcase_44 AC 1,055 ms
10,752 KB
testcase_45 AC 1,116 ms
10,752 KB
testcase_46 AC 912 ms
10,752 KB
testcase_47 AC 383 ms
10,752 KB
testcase_48 AC 127 ms
10,752 KB
testcase_49 AC 713 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

for _ in range(int(input())):
    a,b,c = map(int,input().split())
    x,y,z,w = map(int,input().split())
    ans = 0
    for i in range(min(a,b)+1):
        ai = a-i; bi = b-i; ci = c
        l = min(ai,bi,ci); j = min(bi-l,ci-l); k = min(ai-l,ci-l)
        if y+z<=w: ans = max(ans,x*i+y*j+z*k+w*l)
        elif z<=y>=w: ans = max(ans,x*i+y*min(bi,ci)+z*min(ai,ci-min(bi,ci)))
        elif y<=z>=w: ans = max(ans,x*i+y*min(bi,ci-min(ai,ci))+z*min(ai,ci))
        else: d = min(ci-j-k-l,l); ans = max(ans,x*i+y*(j+d)+z*(k+d)+w*(l-d))
    print(ans)
0