結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 421 ms
18,352 KB
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 70 ms
11,520 KB
testcase_12 AC 317 ms
16,424 KB
testcase_13 AC 399 ms
18,160 KB
testcase_14 AC 341 ms
17,064 KB
testcase_15 AC 391 ms
18,024 KB
testcase_16 AC 309 ms
15,976 KB
testcase_17 WA -
testcase_18 AC 171 ms
13,524 KB
testcase_19 WA -
testcase_20 AC 284 ms
15,640 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 264 ms
15,308 KB
testcase_26 AC 350 ms
17,216 KB
testcase_27 AC 403 ms
18,320 KB
testcase_28 AC 211 ms
14,188 KB
testcase_29 AC 134 ms
12,596 KB
testcase_30 AC 52 ms
11,136 KB
testcase_31 WA -
testcase_32 AC 59 ms
11,264 KB
testcase_33 WA -
testcase_34 WA -
testcase_35 AC 311 ms
16,244 KB
testcase_36 AC 401 ms
18,096 KB
testcase_37 AC 320 ms
16,416 KB
testcase_38 AC 247 ms
14,980 KB
testcase_39 AC 182 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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