結果

問題 No.2386 Udon Coupon (Easy)
ユーザー ニックネームニックネーム
提出日時 2023-07-21 21:29:00
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 244 bytes
コンパイル時間 82 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,476 KB
最終ジャッジ日時 2024-09-21 22:46:08
合計ジャッジ時間 9,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 34 ms
10,624 KB
testcase_02 AC 33 ms
10,752 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 387 ms
18,476 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 70 ms
11,392 KB
testcase_12 AC 296 ms
16,512 KB
testcase_13 AC 374 ms
18,156 KB
testcase_14 AC 333 ms
17,056 KB
testcase_15 AC 396 ms
18,020 KB
testcase_16 AC 285 ms
16,224 KB
testcase_17 WA -
testcase_18 AC 162 ms
13,524 KB
testcase_19 WA -
testcase_20 AC 270 ms
15,760 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 255 ms
15,428 KB
testcase_26 AC 345 ms
17,208 KB
testcase_27 AC 384 ms
18,192 KB
testcase_28 AC 196 ms
14,312 KB
testcase_29 AC 128 ms
12,592 KB
testcase_30 AC 50 ms
11,136 KB
testcase_31 WA -
testcase_32 AC 59 ms
11,392 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 292 ms
16,244 KB
testcase_36 AC 382 ms
18,164 KB
testcase_37 AC 303 ms
16,536 KB
testcase_38 AC 234 ms
15,104 KB
testcase_39 AC 174 ms
13,816 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],0))
0