結果

問題 No.2390 Udon Coupon (Hard)
ユーザー sotanishysotanishy
提出日時 2023-07-21 23:50:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 725 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,024 KB
最終ジャッジ日時 2024-09-22 01:16:30
合計ジャッジ時間 5,425 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,840 KB
testcase_01 AC 43 ms
51,968 KB
testcase_02 AC 57 ms
60,032 KB
testcase_03 AC 54 ms
60,288 KB
testcase_04 AC 54 ms
60,416 KB
testcase_05 AC 42 ms
51,456 KB
testcase_06 AC 37 ms
51,712 KB
testcase_07 AC 42 ms
51,456 KB
testcase_08 AC 38 ms
51,840 KB
testcase_09 AC 97 ms
65,024 KB
testcase_10 AC 49 ms
60,416 KB
testcase_11 AC 39 ms
51,840 KB
testcase_12 AC 38 ms
51,968 KB
testcase_13 AC 48 ms
60,160 KB
testcase_14 AC 49 ms
60,160 KB
testcase_15 AC 38 ms
51,712 KB
testcase_16 AC 38 ms
51,968 KB
testcase_17 AC 49 ms
60,032 KB
testcase_18 AC 49 ms
60,032 KB
testcase_19 AC 48 ms
60,032 KB
testcase_20 AC 37 ms
51,712 KB
testcase_21 WA -
testcase_22 AC 48 ms
60,288 KB
testcase_23 AC 46 ms
60,672 KB
testcase_24 AC 68 ms
62,976 KB
testcase_25 AC 69 ms
62,848 KB
testcase_26 AC 69 ms
62,848 KB
testcase_27 AC 70 ms
62,848 KB
testcase_28 AC 69 ms
62,592 KB
testcase_29 AC 93 ms
64,640 KB
testcase_30 AC 88 ms
64,256 KB
testcase_31 AC 92 ms
64,768 KB
testcase_32 AC 96 ms
64,896 KB
testcase_33 AC 93 ms
64,512 KB
testcase_34 AC 131 ms
64,768 KB
testcase_35 AC 120 ms
64,768 KB
testcase_36 AC 115 ms
64,896 KB
testcase_37 AC 122 ms
65,024 KB
testcase_38 AC 121 ms
64,512 KB
testcase_39 AC 64 ms
63,104 KB
testcase_40 AC 67 ms
63,744 KB
testcase_41 AC 65 ms
62,208 KB
testcase_42 AC 65 ms
62,336 KB
testcase_43 AC 61 ms
62,848 KB
testcase_44 AC 54 ms
62,336 KB
testcase_45 AC 61 ms
63,232 KB
testcase_46 AC 53 ms
60,544 KB
testcase_47 AC 51 ms
60,544 KB
testcase_48 AC 61 ms
62,720 KB
testcase_49 AC 40 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N = int(input())
A1, B1 = map(int, input().split())
A2, B2 = map(int, input().split())
A3, B3 = map(int, input().split())
D = 0
for x1 in range(min(A2, A3)+1):
    for x2 in range(min(A1, A3)+1):
        remN = N-A1*x1-A2*x2
        if remN < 0:
            break
        D = max(D, B1*x1+B2*x2+B3*(remN//A3))

for x3 in range(min(A2, A1)+1):
    for x2 in range(min(A1, A3)+1):
        remN = N-A3*x3-A2*x2
        if remN < 0:
            break
        D = max(D, B1*(remN//A1)+B2*x2+B3*x3)

for x3 in range(min(A2, A1)+1):
    for x1 in range(min(A2, A3)+1):
        remN = N-A3*x3-A1*x1
        if remN < 0:
            break
        D = max(D, B1*x1+B2*(remN//A2)+B3*x3)

print(D)
0