結果
問題 | 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 |
コンパイル時間 | 354 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-05-10 06:59:35 |
合計ジャッジ時間 | 39,625 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 178 ms
10,880 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 1,172 ms
10,752 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 1,380 ms
10,624 KB |
testcase_09 | WA | - |
testcase_10 | AC | 1,057 ms
10,624 KB |
testcase_11 | AC | 1,153 ms
10,752 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1,279 ms
10,752 KB |
testcase_14 | WA | - |
testcase_15 | AC | 1,274 ms
10,752 KB |
testcase_16 | AC | 701 ms
10,752 KB |
testcase_17 | AC | 1,481 ms
10,752 KB |
testcase_18 | AC | 1,393 ms
10,752 KB |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 677 ms
10,752 KB |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 1,302 ms
10,752 KB |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 982 ms
10,752 KB |
testcase_29 | AC | 1,405 ms
10,624 KB |
testcase_30 | AC | 1,278 ms
10,752 KB |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | AC | 69 ms
10,752 KB |
testcase_37 | AC | 39 ms
10,880 KB |
testcase_38 | AC | 57 ms
10,752 KB |
testcase_39 | AC | 46 ms
10,752 KB |
testcase_40 | AC | 48 ms
10,752 KB |
testcase_41 | TLE | - |
testcase_42 | TLE | - |
testcase_43 | AC | 1,412 ms
10,880 KB |
testcase_44 | AC | 1,088 ms
10,752 KB |
testcase_45 | WA | - |
testcase_46 | WA | - |
testcase_47 | AC | 408 ms
10,880 KB |
testcase_48 | AC | 134 ms
10,880 KB |
testcase_49 | AC | 721 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)