結果
問題 | No.2309 [Cherry 5th Tune D] 夏の先取り |
ユーザー | ニックネーム |
提出日時 | 2023-05-19 23:43:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 544 bytes |
コンパイル時間 | 347 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-12-20 02:19:52 |
合計ジャッジ時間 | 63,820 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 175 ms
10,752 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1,146 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1,372 ms
10,752 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1,070 ms
10,752 KB |
testcase_11 | AC | 1,141 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1,312 ms
10,752 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1,264 ms
10,752 KB |
testcase_16 | AC | 673 ms
10,752 KB |
testcase_17 | AC | 1,460 ms
10,880 KB |
testcase_18 | AC | 1,358 ms
10,752 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 659 ms
10,752 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,303 ms
10,752 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 966 ms
10,752 KB |
testcase_29 | AC | 1,363 ms
10,752 KB |
testcase_30 | AC | 1,273 ms
10,880 KB |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | AC | 54 ms
10,752 KB |
testcase_37 | AC | 31 ms
10,752 KB |
testcase_38 | AC | 49 ms
10,752 KB |
testcase_39 | AC | 37 ms
10,752 KB |
testcase_40 | AC | 34 ms
10,880 KB |
testcase_41 | AC | 2,886 ms
10,752 KB |
testcase_42 | TLE | - |
testcase_43 | AC | 1,380 ms
10,752 KB |
testcase_44 | AC | 1,054 ms
10,752 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 379 ms
10,752 KB |
testcase_48 | AC | 130 ms
10,752 KB |
testcase_49 | AC | 724 ms
10,880 KB |
ソースコード
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: ci -= j+k+l; ans = max(ans,x*i+y*(j+ci)+z*(k+ci)+w*(l-ci)) print(ans)