結果

問題 No.2386 Udon Coupon (Easy)
ユーザー かとぅー ☆かとぅー ☆
提出日時 2023-09-05 14:44:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 370 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,208 KB
実行使用メモリ 65,404 KB
最終ジャッジ日時 2024-06-23 10:21:58
合計ジャッジ時間 3,189 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,768 KB
testcase_01 AC 33 ms
51,752 KB
testcase_02 AC 35 ms
52,216 KB
testcase_03 AC 36 ms
52,996 KB
testcase_04 AC 36 ms
52,300 KB
testcase_05 AC 36 ms
52,212 KB
testcase_06 AC 36 ms
52,012 KB
testcase_07 AC 51 ms
65,404 KB
testcase_08 AC 35 ms
53,256 KB
testcase_09 AC 35 ms
53,120 KB
testcase_10 AC 45 ms
62,812 KB
testcase_11 AC 43 ms
60,956 KB
testcase_12 AC 44 ms
60,996 KB
testcase_13 AC 46 ms
61,656 KB
testcase_14 AC 47 ms
63,136 KB
testcase_15 AC 46 ms
61,596 KB
testcase_16 AC 45 ms
62,436 KB
testcase_17 AC 48 ms
62,928 KB
testcase_18 AC 43 ms
60,696 KB
testcase_19 AC 45 ms
62,240 KB
testcase_20 AC 46 ms
62,540 KB
testcase_21 AC 53 ms
65,332 KB
testcase_22 AC 52 ms
65,056 KB
testcase_23 AC 50 ms
64,228 KB
testcase_24 AC 45 ms
62,156 KB
testcase_25 AC 46 ms
62,884 KB
testcase_26 AC 48 ms
62,564 KB
testcase_27 AC 46 ms
61,968 KB
testcase_28 AC 44 ms
61,220 KB
testcase_29 AC 45 ms
62,020 KB
testcase_30 AC 48 ms
63,964 KB
testcase_31 AC 44 ms
62,088 KB
testcase_32 AC 45 ms
60,968 KB
testcase_33 AC 47 ms
63,708 KB
testcase_34 AC 43 ms
60,884 KB
testcase_35 AC 47 ms
63,756 KB
testcase_36 AC 50 ms
63,644 KB
testcase_37 AC 53 ms
65,072 KB
testcase_38 AC 46 ms
61,408 KB
testcase_39 AC 43 ms
60,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A, B, C = map(int, input().split())
dp = [-1 for i in range(N + 1)]
dp[0] = 0
for i in range(N):
    if dp[i] != -1:
        if i+3 <= N:
            dp[i+3] = max(dp[i] + A , dp[i+3])    
        if i + 5 <= N:
            dp[i+5] = max(dp[i] + B , dp[i+5])    
        if i+10<= N:
            dp[i+10] = max(dp[i] + C , dp[i+10])    

print(max(dp))
0