結果

問題 No.2386 Udon Coupon (Easy)
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-04-26 14:29:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 149 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 421 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 13,824 KB
最終ジャッジ日時 2024-09-17 21:38:51
合計ジャッジ時間 6,218 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,160 KB
testcase_01 AC 75 ms
12,160 KB
testcase_02 AC 77 ms
12,160 KB
testcase_03 AC 77 ms
12,288 KB
testcase_04 AC 78 ms
12,288 KB
testcase_05 AC 79 ms
12,288 KB
testcase_06 AC 77 ms
12,160 KB
testcase_07 AC 141 ms
13,696 KB
testcase_08 AC 78 ms
12,416 KB
testcase_09 AC 77 ms
12,032 KB
testcase_10 AC 93 ms
12,160 KB
testcase_11 AC 85 ms
12,288 KB
testcase_12 AC 128 ms
13,056 KB
testcase_13 AC 142 ms
13,824 KB
testcase_14 AC 134 ms
13,440 KB
testcase_15 AC 149 ms
13,696 KB
testcase_16 AC 127 ms
13,056 KB
testcase_17 AC 140 ms
13,440 KB
testcase_18 AC 104 ms
12,672 KB
testcase_19 AC 88 ms
12,160 KB
testcase_20 AC 123 ms
13,056 KB
testcase_21 AC 133 ms
13,696 KB
testcase_22 AC 110 ms
12,928 KB
testcase_23 AC 107 ms
12,928 KB
testcase_24 AC 88 ms
12,288 KB
testcase_25 AC 119 ms
13,056 KB
testcase_26 AC 135 ms
13,440 KB
testcase_27 AC 144 ms
13,696 KB
testcase_28 AC 108 ms
12,800 KB
testcase_29 AC 96 ms
12,288 KB
testcase_30 AC 81 ms
12,416 KB
testcase_31 AC 107 ms
12,800 KB
testcase_32 AC 83 ms
12,416 KB
testcase_33 AC 148 ms
13,696 KB
testcase_34 AC 115 ms
12,800 KB
testcase_35 AC 128 ms
13,056 KB
testcase_36 AC 148 ms
13,696 KB
testcase_37 AC 121 ms
13,184 KB
testcase_38 AC 114 ms
12,928 KB
testcase_39 AC 101 ms
12,544 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A, B, C = gets.split.map(&:to_i)

dp = Array.new(N+1, 0)

(0..N-3).each do |i|
  dp[i+3] = [dp[i+3], dp[i]+A].max if i+3 <= N
  dp[i+5] = [dp[i+5], dp[i]+B].max if i+5 <= N
  dp[i+10] = [dp[i+10], dp[i]+C].max if i+10 <= N
end

puts dp.max
0