結果

問題 No.2386 Udon Coupon (Easy)
ユーザー komkompikomkompi
提出日時 2023-07-21 22:30:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 287 bytes
コンパイル時間 182 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 77,440 KB
最終ジャッジ日時 2024-09-21 23:58:59
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,584 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 44 ms
52,480 KB
testcase_03 AC 41 ms
51,456 KB
testcase_04 AC 41 ms
51,584 KB
testcase_05 AC 41 ms
51,456 KB
testcase_06 AC 42 ms
52,096 KB
testcase_07 AC 83 ms
77,056 KB
testcase_08 AC 42 ms
52,096 KB
testcase_09 AC 42 ms
51,840 KB
testcase_10 AC 59 ms
64,896 KB
testcase_11 AC 54 ms
61,824 KB
testcase_12 AC 72 ms
74,752 KB
testcase_13 AC 76 ms
77,312 KB
testcase_14 AC 76 ms
76,928 KB
testcase_15 AC 77 ms
76,672 KB
testcase_16 AC 69 ms
73,472 KB
testcase_17 AC 81 ms
76,800 KB
testcase_18 AC 60 ms
67,840 KB
testcase_19 AC 58 ms
61,696 KB
testcase_20 AC 68 ms
72,192 KB
testcase_21 AC 79 ms
76,800 KB
testcase_22 AC 69 ms
70,272 KB
testcase_23 AC 66 ms
69,888 KB
testcase_24 AC 56 ms
63,616 KB
testcase_25 AC 69 ms
71,808 KB
testcase_26 AC 76 ms
76,672 KB
testcase_27 AC 78 ms
77,312 KB
testcase_28 AC 65 ms
69,376 KB
testcase_29 AC 63 ms
65,408 KB
testcase_30 AC 55 ms
62,080 KB
testcase_31 AC 63 ms
68,480 KB
testcase_32 AC 54 ms
61,824 KB
testcase_33 AC 78 ms
77,056 KB
testcase_34 AC 65 ms
69,888 KB
testcase_35 AC 69 ms
73,856 KB
testcase_36 AC 79 ms
77,440 KB
testcase_37 AC 74 ms
74,752 KB
testcase_38 AC 65 ms
70,912 KB
testcase_39 AC 60 ms
67,328 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

N=int(input())

A,B,C=map(int,input().split())

dic={3:A,5:B,10:C}

dp=[-1]*(N+1)

dp[0]=0

for i in range(N):
    if dp[i]!=-1:
        for n,price in dic.items():
            if i+n<=N:
                dp[i+n]=max(dp[i+n],dp[i]+price)

print(max(dp))
0