結果

問題 No.2390 Udon Coupon (Hard)
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2023-07-21 23:52:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 348 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-10-06 01:57:58
合計ジャッジ時間 6,724 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,968 KB
testcase_01 AC 47 ms
60,032 KB
testcase_02 AC 46 ms
60,160 KB
testcase_03 AC 47 ms
60,672 KB
testcase_04 AC 47 ms
60,288 KB
testcase_05 AC 59 ms
60,160 KB
testcase_06 AC 37 ms
51,968 KB
testcase_07 AC 36 ms
51,840 KB
testcase_08 AC 35 ms
51,968 KB
testcase_09 AC 243 ms
63,020 KB
testcase_10 AC 46 ms
60,160 KB
testcase_11 AC 42 ms
59,008 KB
testcase_12 AC 46 ms
60,160 KB
testcase_13 AC 46 ms
60,672 KB
testcase_14 AC 46 ms
60,800 KB
testcase_15 AC 45 ms
60,160 KB
testcase_16 AC 47 ms
60,672 KB
testcase_17 AC 47 ms
60,288 KB
testcase_18 AC 47 ms
60,800 KB
testcase_19 AC 49 ms
60,928 KB
testcase_20 AC 35 ms
51,840 KB
testcase_21 AC 36 ms
51,968 KB
testcase_22 AC 45 ms
60,416 KB
testcase_23 AC 45 ms
60,544 KB
testcase_24 AC 90 ms
61,824 KB
testcase_25 AC 98 ms
61,952 KB
testcase_26 AC 90 ms
62,208 KB
testcase_27 AC 101 ms
61,952 KB
testcase_28 AC 89 ms
61,952 KB
testcase_29 AC 150 ms
62,976 KB
testcase_30 AC 137 ms
62,976 KB
testcase_31 AC 161 ms
62,976 KB
testcase_32 AC 158 ms
63,104 KB
testcase_33 AC 147 ms
63,104 KB
testcase_34 AC 242 ms
63,104 KB
testcase_35 AC 237 ms
63,360 KB
testcase_36 AC 229 ms
63,156 KB
testcase_37 AC 242 ms
62,976 KB
testcase_38 AC 232 ms
62,848 KB
testcase_39 AC 152 ms
63,232 KB
testcase_40 AC 105 ms
61,824 KB
testcase_41 AC 139 ms
64,000 KB
testcase_42 AC 101 ms
62,592 KB
testcase_43 AC 146 ms
63,360 KB
testcase_44 AC 147 ms
62,976 KB
testcase_45 AC 119 ms
62,848 KB
testcase_46 AC 99 ms
61,824 KB
testcase_47 AC 93 ms
62,720 KB
testcase_48 AC 169 ms
63,232 KB
testcase_49 AC 38 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

ans = 0

ma = max([a for a,b in AB])

for i in range(3):

    AB = AB[1:] + [AB[0]]
    a1,b1 = AB[0]
    a2,b2 = AB[1]
    a3,b3 = AB[2]
    for x in range(ma+1):
        if x*a1 > n:
            break

        for y in range(ma+1):
            if x*a1 + y*a2 > n:
                break

            count = b1*x + b2*y 
            left = n - x*a1 - y*a2
            count += left//a3*b3
            ans = max(ans,count)
print(ans)
0