結果
問題 | No.2309 [Cherry 5th Tune D] 夏の先取り |
ユーザー | rlangevin |
提出日時 | 2023-05-19 22:20:14 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,044 bytes |
コンパイル時間 | 634 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 77,096 KB |
最終ジャッジ日時 | 2024-05-10 05:45:12 |
合計ジャッジ時間 | 7,480 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 54 ms
62,080 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 114 ms
76,108 KB |
testcase_21 | AC | 118 ms
76,248 KB |
testcase_22 | AC | 112 ms
75,964 KB |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | AC | 114 ms
76,224 KB |
testcase_28 | AC | 123 ms
76,372 KB |
testcase_29 | WA | - |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | AC | 53 ms
62,848 KB |
testcase_37 | AC | 39 ms
52,352 KB |
testcase_38 | AC | 56 ms
64,512 KB |
testcase_39 | AC | 50 ms
62,592 KB |
testcase_40 | AC | 49 ms
62,464 KB |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 114 ms
76,004 KB |
testcase_46 | AC | 120 ms
76,256 KB |
testcase_47 | WA | - |
testcase_48 | AC | 34 ms
51,840 KB |
testcase_49 | AC | 34 ms
52,096 KB |
ソースコード
import sys input = sys.stdin.readline T = int(input()) for _ in range(T): A, B, C = map(int, input().split()) X, Y, Z, W = map(int, input().split()) ans = 0 for i in range(min(A, B, C) + 1): now = W * i tA, tB, tC = A - i, B - i, C - i now += X * min(tA, tB) tA, tB = A - min(A, B), B - min(A, B) if tA: now += Z * min(tA, tC) else: now += Y * min(tB, tC) ans = max(now, ans) now = W * i tA, tB, tC = A - i, B - i, C - i now += Y * min(tB, tC) tB, tC = B - min(B, C), C - min(B, C) if tB: now += X * min(tA, tB) else: now += Z * min(tA, tC) ans = max(now, ans) now = W * i tA, tB, tC = A - i, B - i, C - i now += Z * min(tA, tC) tA, tC = A - min(A, C), C - min(A, C) if tA: now += X * min(tA, tB) else: now += Y * min(tB, tC) ans = max(now, ans) print(ans)