結果

問題 No.2386 Udon Coupon (Easy)
ユーザー ニックネームニックネーム
提出日時 2023-07-21 21:30:07
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 398 ms / 2,000 ms
コード長 245 bytes
コンパイル時間 121 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 20,012 KB
最終ジャッジ日時 2024-09-21 22:47:38
合計ジャッジ時間 9,134 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 32 ms
10,880 KB
testcase_07 AC 398 ms
20,012 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 118 ms
13,060 KB
testcase_11 AC 68 ms
11,776 KB
testcase_12 AC 301 ms
17,700 KB
testcase_13 AC 379 ms
19,564 KB
testcase_14 AC 339 ms
18,472 KB
testcase_15 AC 387 ms
19,556 KB
testcase_16 AC 287 ms
17,248 KB
testcase_17 AC 352 ms
18,928 KB
testcase_18 AC 167 ms
14,036 KB
testcase_19 AC 57 ms
11,392 KB
testcase_20 AC 278 ms
16,784 KB
testcase_21 AC 348 ms
18,792 KB
testcase_22 AC 216 ms
15,272 KB
testcase_23 AC 198 ms
14,808 KB
testcase_24 AC 86 ms
12,160 KB
testcase_25 AC 258 ms
16,456 KB
testcase_26 AC 353 ms
18,744 KB
testcase_27 AC 391 ms
19,724 KB
testcase_28 AC 202 ms
14,952 KB
testcase_29 AC 130 ms
13,104 KB
testcase_30 AC 51 ms
11,264 KB
testcase_31 AC 197 ms
14,656 KB
testcase_32 AC 59 ms
11,392 KB
testcase_33 AC 396 ms
20,012 KB
testcase_34 AC 216 ms
15,412 KB
testcase_35 AC 291 ms
17,448 KB
testcase_36 AC 382 ms
19,696 KB
testcase_37 AC 297 ms
17,688 KB
testcase_38 AC 233 ms
15,844 KB
testcase_39 AC 171 ms
14,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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