結果

問題 No.2390 Udon Coupon (Hard)
ユーザー pitPpitP
提出日時 2023-07-22 12:04:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 432 bytes
コンパイル時間 891 ms
コンパイル使用メモリ 82,144 KB
実行使用メモリ 62,904 KB
最終ジャッジ日時 2024-09-22 12:12:06
合計ジャッジ時間 6,046 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 77 ms
61,380 KB
testcase_01 AC 80 ms
62,164 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 67 ms
62,156 KB
testcase_06 AC 75 ms
61,628 KB
testcase_07 WA -
testcase_08 AC 58 ms
59,696 KB
testcase_09 AC 81 ms
61,268 KB
testcase_10 AC 78 ms
62,380 KB
testcase_11 AC 62 ms
62,388 KB
testcase_12 AC 62 ms
61,212 KB
testcase_13 AC 61 ms
61,844 KB
testcase_14 AC 76 ms
62,904 KB
testcase_15 AC 71 ms
61,948 KB
testcase_16 AC 77 ms
61,500 KB
testcase_17 AC 59 ms
61,948 KB
testcase_18 AC 62 ms
62,392 KB
testcase_19 AC 63 ms
62,596 KB
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 AC 79 ms
61,880 KB
testcase_42 AC 81 ms
61,088 KB
testcase_43 WA -
testcase_44 AC 80 ms
61,060 KB
testcase_45 AC 79 ms
62,252 KB
testcase_46 WA -
testcase_47 AC 79 ms
60,812 KB
testcase_48 AC 79 ms
61,280 KB
testcase_49 AC 57 ms
59,700 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
AB = [list(map(int, input().split())) for _ in range(3)]

XAB = [[AB[i][1] / AB[i][0], AB[i][0], AB[i][1]] for i in range(len(AB))]
XAB.sort()

_, Ai, Bi = XAB[0]
_, Aj, Bj = XAB[1]
_, Ak, Bk = XAB[2]

ans = 0
for i in range(2000):
    for j in range(2000):
        if N - Ai * i - Aj * j < 0:
            continue
        k = (N - (Ai * i + Ai * j)) // Ak
        ans = max(ans, Bi * i + Bj * j, Bk * k)
print(ans)
0