結果

問題 No.2386 Udon Coupon (Easy)
ユーザー 👑 MizarMizar
提出日時 2023-07-04 15:13:22
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 457 ms / 2,000 ms
コード長 258 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,560 KB
最終ジャッジ日時 2024-09-19 22:33:27
合計ジャッジ時間 9,975 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 25 ms
10,752 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 444 ms
18,560 KB
testcase_08 AC 27 ms
10,752 KB
testcase_09 AC 26 ms
10,880 KB
testcase_10 AC 128 ms
12,544 KB
testcase_11 AC 70 ms
11,520 KB
testcase_12 AC 341 ms
16,512 KB
testcase_13 AC 414 ms
18,048 KB
testcase_14 AC 386 ms
17,024 KB
testcase_15 AC 413 ms
18,176 KB
testcase_16 AC 311 ms
16,256 KB
testcase_17 AC 390 ms
17,408 KB
testcase_18 AC 177 ms
13,440 KB
testcase_19 AC 56 ms
11,264 KB
testcase_20 AC 300 ms
15,872 KB
testcase_21 AC 406 ms
17,408 KB
testcase_22 AC 243 ms
14,464 KB
testcase_23 AC 209 ms
14,080 KB
testcase_24 AC 87 ms
11,776 KB
testcase_25 AC 271 ms
15,360 KB
testcase_26 AC 380 ms
17,152 KB
testcase_27 AC 437 ms
18,176 KB
testcase_28 AC 214 ms
14,208 KB
testcase_29 AC 139 ms
12,928 KB
testcase_30 AC 48 ms
11,136 KB
testcase_31 AC 211 ms
14,080 KB
testcase_32 AC 57 ms
11,264 KB
testcase_33 AC 457 ms
18,432 KB
testcase_34 AC 233 ms
14,592 KB
testcase_35 AC 325 ms
16,256 KB
testcase_36 AC 416 ms
18,304 KB
testcase_37 AC 322 ms
16,512 KB
testcase_38 AC 260 ms
14,976 KB
testcase_39 AC 187 ms
13,824 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a,b,c = map(int,input().split())
dp = [0] * (n + 10)

for i in range(n):
	dp[i + 1] = max(dp[i + 1], dp[i])
	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(dp[n])
0