結果

問題 No.2386 Udon Coupon (Easy)
ユーザー lloyzlloyz
提出日時 2023-07-21 21:30:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 2,000 ms
コード長 373 bytes
コンパイル時間 627 ms
コンパイル使用メモリ 82,080 KB
実行使用メモリ 61,952 KB
最終ジャッジ日時 2024-09-21 22:48:56
合計ジャッジ時間 3,649 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,096 KB
testcase_01 AC 43 ms
51,456 KB
testcase_02 AC 45 ms
52,096 KB
testcase_03 AC 43 ms
51,840 KB
testcase_04 AC 45 ms
51,840 KB
testcase_05 AC 44 ms
51,840 KB
testcase_06 AC 43 ms
52,352 KB
testcase_07 AC 58 ms
60,928 KB
testcase_08 AC 48 ms
51,840 KB
testcase_09 AC 43 ms
51,712 KB
testcase_10 AC 52 ms
59,776 KB
testcase_11 AC 51 ms
59,520 KB
testcase_12 AC 56 ms
61,568 KB
testcase_13 AC 57 ms
61,952 KB
testcase_14 AC 53 ms
60,800 KB
testcase_15 AC 59 ms
61,696 KB
testcase_16 AC 57 ms
61,184 KB
testcase_17 AC 54 ms
60,544 KB
testcase_18 AC 54 ms
60,672 KB
testcase_19 AC 51 ms
59,648 KB
testcase_20 AC 52 ms
60,416 KB
testcase_21 AC 54 ms
60,800 KB
testcase_22 AC 53 ms
60,288 KB
testcase_23 AC 52 ms
60,416 KB
testcase_24 AC 51 ms
59,648 KB
testcase_25 AC 54 ms
60,416 KB
testcase_26 AC 54 ms
60,800 KB
testcase_27 AC 55 ms
60,928 KB
testcase_28 AC 58 ms
61,184 KB
testcase_29 AC 54 ms
59,776 KB
testcase_30 AC 52 ms
59,264 KB
testcase_31 AC 55 ms
60,032 KB
testcase_32 AC 52 ms
59,648 KB
testcase_33 AC 57 ms
60,672 KB
testcase_34 AC 57 ms
61,184 KB
testcase_35 AC 55 ms
60,288 KB
testcase_36 AC 57 ms
61,568 KB
testcase_37 AC 54 ms
60,416 KB
testcase_38 AC 55 ms
61,184 KB
testcase_39 AC 55 ms
61,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a, b, c = map(int, input().split())

DP = [-1 for _ in range(n + 1)]
DP[n] = 0
for i in range(n, -1, -1):
    if DP[i] == -1:
        continue
    if i - 3 >= 0:
        DP[i - 3] = max(DP[i - 3], DP[i] + a)
    if i - 5 >= 0:
        DP[i - 5] = max(DP[i - 5], DP[i] + b)
    if i - 10 >= 0:
        DP[i - 10] = max(DP[i - 10], DP[i] + c)
print(max(DP))
0