結果

問題 No.2386 Udon Coupon (Easy)
ユーザー 👑 MizarMizar
提出日時 2023-07-04 15:22:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 211 ms / 2,000 ms
コード長 291 bytes
コンパイル時間 360 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,304 KB
最終ジャッジ日時 2024-09-17 21:38:38
合計ジャッジ時間 5,580 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,624 KB
testcase_01 AC 25 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 25 ms
10,624 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 AC 211 ms
15,744 KB
testcase_08 AC 25 ms
10,624 KB
testcase_09 AC 24 ms
10,752 KB
testcase_10 AC 70 ms
11,392 KB
testcase_11 AC 43 ms
11,392 KB
testcase_12 AC 156 ms
16,384 KB
testcase_13 AC 192 ms
18,048 KB
testcase_14 AC 167 ms
13,952 KB
testcase_15 AC 194 ms
16,000 KB
testcase_16 AC 155 ms
14,592 KB
testcase_17 AC 177 ms
14,208 KB
testcase_18 AC 91 ms
12,544 KB
testcase_19 AC 36 ms
11,008 KB
testcase_20 AC 140 ms
15,744 KB
testcase_21 AC 177 ms
15,232 KB
testcase_22 AC 115 ms
12,544 KB
testcase_23 AC 104 ms
12,544 KB
testcase_24 AC 52 ms
11,136 KB
testcase_25 AC 129 ms
15,360 KB
testcase_26 AC 175 ms
13,952 KB
testcase_27 AC 199 ms
18,304 KB
testcase_28 AC 105 ms
13,184 KB
testcase_29 AC 71 ms
11,648 KB
testcase_30 AC 34 ms
10,752 KB
testcase_31 AC 100 ms
12,288 KB
testcase_32 AC 37 ms
11,008 KB
testcase_33 AC 199 ms
14,720 KB
testcase_34 AC 120 ms
13,568 KB
testcase_35 AC 149 ms
16,128 KB
testcase_36 AC 188 ms
16,000 KB
testcase_37 AC 148 ms
13,440 KB
testcase_38 AC 119 ms
13,824 KB
testcase_39 AC 94 ms
13,568 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

for i in range(n + 1):
	if i >= 10:
		v = max(v, dp[i - 3] + a, dp[i - 5] + b, dp[i - 10] + c)
	elif i >= 5:
		v = max(v, dp[i - 3] + a, dp[i - 5] + b)
	elif i >= 3:
		v = max(v, dp[i - 3] + a)
	dp[i] = v

print(v)
0