結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-06-27 09:58:57
言語 Ruby
(3.3.0)
結果
RE  
実行時間 -
コード長 387 bytes
コンパイル時間 74 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 817,408 KB
最終ジャッジ日時 2024-07-19 03:10:58
合計ジャッジ時間 15,296 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,032 KB
testcase_01 AC 109 ms
12,160 KB
testcase_02 AC 701 ms
19,200 KB
testcase_03 AC 1,746 ms
31,360 KB
testcase_04 AC 1,416 ms
26,624 KB
testcase_05 AC 84 ms
12,032 KB
testcase_06 AC 81 ms
12,288 KB
testcase_07 AC 83 ms
12,288 KB
testcase_08 AC 82 ms
12,032 KB
testcase_09 RE -
testcase_10 AC 145 ms
12,800 KB
testcase_11 AC 82 ms
12,032 KB
testcase_12 AC 90 ms
12,160 KB
testcase_13 AC 110 ms
12,416 KB
testcase_14 AC 153 ms
12,928 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 110 ms
12,160 KB
testcase_17 AC 87 ms
12,032 KB
testcase_18 AC 113 ms
12,288 KB
testcase_19 AC 113 ms
12,416 KB
testcase_20 AC 75 ms
12,032 KB
testcase_21 AC 75 ms
12,160 KB
testcase_22 AC 1,403 ms
27,264 KB
testcase_23 AC 1,419 ms
27,392 KB
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 TLE -
testcase_40 MLE -
testcase_41 -- -
testcase_42 -- -
testcase_43 -- -
testcase_44 -- -
testcase_45 -- -
testcase_46 -- -
testcase_47 -- -
testcase_48 -- -
testcase_49 -- -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = Array.new(3)
B = Array.new(3)
(0..2).each do |i|
  A[i], B[i] = gets.split.map(&:to_i)
end
N2 = A[0]*A[1]*A[2]
loop = [0,N.div(N2)-2].max
ans = [B[0]*A[1]*A[2],A[0]*B[1]*A[2],A[0]*A[1]*B[2]].max * loop
N -= loop * N2

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

(0..N).each do |i|
  (0..2).each do |j|
    dp[i+A[j]] = [dp[i+A[j]], dp[i]+B[j]].max if i+A[j] <= N
  end
end
puts (ans+dp[N])
0