結果

問題 No.2390 Udon Coupon (Hard)
ユーザー pitPpitP
提出日時 2023-07-22 11:58:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 151 ms / 2,000 ms
コード長 431 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 64,000 KB
最終ジャッジ日時 2024-10-06 02:01:48
合計ジャッジ時間 6,955 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
61,312 KB
testcase_01 AC 123 ms
61,568 KB
testcase_02 AC 120 ms
61,568 KB
testcase_03 AC 122 ms
61,440 KB
testcase_04 AC 123 ms
61,568 KB
testcase_05 AC 78 ms
61,952 KB
testcase_06 AC 119 ms
61,696 KB
testcase_07 AC 57 ms
59,776 KB
testcase_08 AC 56 ms
60,032 KB
testcase_09 AC 125 ms
61,568 KB
testcase_10 AC 142 ms
62,720 KB
testcase_11 AC 66 ms
61,568 KB
testcase_12 AC 66 ms
61,824 KB
testcase_13 AC 64 ms
61,568 KB
testcase_14 AC 149 ms
64,000 KB
testcase_15 AC 151 ms
63,232 KB
testcase_16 AC 139 ms
62,592 KB
testcase_17 AC 64 ms
61,440 KB
testcase_18 AC 69 ms
61,824 KB
testcase_19 AC 67 ms
61,696 KB
testcase_20 AC 58 ms
59,776 KB
testcase_21 AC 59 ms
59,776 KB
testcase_22 AC 128 ms
61,568 KB
testcase_23 AC 123 ms
61,568 KB
testcase_24 AC 122 ms
61,440 KB
testcase_25 AC 134 ms
61,824 KB
testcase_26 AC 131 ms
61,568 KB
testcase_27 AC 125 ms
61,568 KB
testcase_28 AC 124 ms
61,824 KB
testcase_29 AC 124 ms
61,568 KB
testcase_30 AC 122 ms
61,568 KB
testcase_31 AC 126 ms
61,568 KB
testcase_32 AC 123 ms
61,568 KB
testcase_33 AC 120 ms
61,440 KB
testcase_34 AC 121 ms
61,568 KB
testcase_35 AC 120 ms
61,568 KB
testcase_36 AC 120 ms
61,696 KB
testcase_37 AC 121 ms
61,696 KB
testcase_38 AC 120 ms
61,440 KB
testcase_39 AC 123 ms
61,312 KB
testcase_40 AC 123 ms
61,312 KB
testcase_41 AC 129 ms
61,312 KB
testcase_42 AC 121 ms
61,312 KB
testcase_43 AC 122 ms
61,568 KB
testcase_44 AC 120 ms
61,440 KB
testcase_45 AC 119 ms
61,568 KB
testcase_46 AC 121 ms
61,696 KB
testcase_47 AC 123 ms
61,312 KB
testcase_48 AC 122 ms
61,568 KB
testcase_49 AC 57 ms
59,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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


ans=0
for i in range(2000):
    inum=ls[0][1]*i
    for j in range(2000):
        jnum=ls[1][1]*j
 
        if N-inum-jnum<0:
            continue
        k=(N-inum-jnum)//ls[2][1]
    
        tmp=i*ls[0][2]+j*ls[1][2]+k*ls[2][2]
        ans=max(ans,tmp)
        
print(ans)





0