結果

問題 No.2386 Udon Coupon (Easy)
ユーザー 👑 MizarMizar
提出日時 2023-07-20 01:15:39
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 239 ms / 2,000 ms
コード長 293 bytes
コンパイル時間 219 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,176 KB
最終ジャッジ日時 2024-09-19 22:51:37
合計ジャッジ時間 6,231 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 222 ms
16,000 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 27 ms
10,752 KB
testcase_10 AC 77 ms
11,520 KB
testcase_11 AC 50 ms
11,264 KB
testcase_12 AC 185 ms
16,512 KB
testcase_13 AC 222 ms
18,048 KB
testcase_14 AC 196 ms
13,824 KB
testcase_15 AC 221 ms
16,000 KB
testcase_16 AC 174 ms
14,720 KB
testcase_17 AC 219 ms
14,080 KB
testcase_18 AC 105 ms
12,672 KB
testcase_19 AC 43 ms
10,880 KB
testcase_20 AC 169 ms
15,744 KB
testcase_21 AC 204 ms
15,232 KB
testcase_22 AC 130 ms
12,672 KB
testcase_23 AC 127 ms
12,544 KB
testcase_24 AC 60 ms
11,136 KB
testcase_25 AC 158 ms
15,232 KB
testcase_26 AC 204 ms
13,824 KB
testcase_27 AC 229 ms
18,176 KB
testcase_28 AC 127 ms
13,312 KB
testcase_29 AC 82 ms
11,648 KB
testcase_30 AC 39 ms
10,752 KB
testcase_31 AC 118 ms
12,288 KB
testcase_32 AC 43 ms
11,008 KB
testcase_33 AC 229 ms
14,592 KB
testcase_34 AC 135 ms
13,440 KB
testcase_35 AC 190 ms
16,000 KB
testcase_36 AC 239 ms
16,128 KB
testcase_37 AC 194 ms
13,568 KB
testcase_38 AC 150 ms
13,696 KB
testcase_39 AC 115 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b,c = map(int,input().split())
dp = [0] * (n + 1)
for i in range(n + 1):
    dp[i] = max(
        dp[i -  1]     if i >= 1 else 0,
        dp[i -  3] + a if i >= 3 else 0,
        dp[i -  5] + b if i >= 5 else 0,
        dp[i - 10] + c if i >= 10 else 0,
    )
print(dp[n])
0