結果

問題 No.2386 Udon Coupon (Easy)
ユーザー hiro1729hiro1729
提出日時 2023-09-01 19:44:46
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 387 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,432 KB
最終ジャッジ日時 2024-06-11 02:39:47
合計ジャッジ時間 8,230 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 25 ms
10,752 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 25 ms
10,624 KB
testcase_07 AC 349 ms
18,432 KB
testcase_08 AC 26 ms
10,752 KB
testcase_09 AC 25 ms
10,752 KB
testcase_10 AC 96 ms
12,544 KB
testcase_11 AC 55 ms
11,392 KB
testcase_12 AC 270 ms
16,384 KB
testcase_13 AC 317 ms
18,176 KB
testcase_14 AC 288 ms
17,024 KB
testcase_15 AC 318 ms
18,048 KB
testcase_16 AC 242 ms
16,000 KB
testcase_17 AC 291 ms
17,536 KB
testcase_18 AC 136 ms
13,440 KB
testcase_19 AC 49 ms
11,264 KB
testcase_20 AC 225 ms
15,872 KB
testcase_21 AC 280 ms
17,280 KB
testcase_22 AC 176 ms
14,464 KB
testcase_23 AC 158 ms
14,080 KB
testcase_24 AC 72 ms
11,776 KB
testcase_25 AC 212 ms
15,488 KB
testcase_26 AC 276 ms
17,152 KB
testcase_27 AC 353 ms
18,048 KB
testcase_28 AC 176 ms
14,080 KB
testcase_29 AC 110 ms
12,672 KB
testcase_30 AC 44 ms
11,136 KB
testcase_31 AC 160 ms
13,952 KB
testcase_32 AC 48 ms
11,136 KB
testcase_33 AC 323 ms
18,304 KB
testcase_34 AC 207 ms
14,592 KB
testcase_35 AC 264 ms
16,128 KB
testcase_36 AC 316 ms
18,176 KB
testcase_37 AC 249 ms
16,512 KB
testcase_38 AC 205 ms
15,104 KB
testcase_39 AC 154 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):
	if i >= 3:
		dp[i] = max(dp[i], dp[i - 3] + a)
	if i >= 5:
		dp[i] = max(dp[i], dp[i - 5] + b)
	if i >= 10:
		dp[i] = max(dp[i], dp[i - 10] + c)
print(dp[n])
0