結果

問題 No.2390 Udon Coupon (Hard)
ユーザー 👑 amentorimaruamentorimaru
提出日時 2023-07-03 11:43:51
言語 Ruby
(3.3.0)
結果
TLE  
実行時間 -
コード長 494 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 74,624 KB
最終ジャッジ日時 2024-07-19 03:12:56
合計ジャッジ時間 26,127 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
17,792 KB
testcase_01 AC 88 ms
12,160 KB
testcase_02 AC 92 ms
12,160 KB
testcase_03 AC 98 ms
12,288 KB
testcase_04 AC 97 ms
12,032 KB
testcase_05 AC 90 ms
12,160 KB
testcase_06 AC 89 ms
12,160 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 95 ms
12,160 KB
testcase_09 TLE -
testcase_10 AC 91 ms
12,288 KB
testcase_11 AC 87 ms
12,160 KB
testcase_12 AC 86 ms
12,288 KB
testcase_13 AC 92 ms
12,032 KB
testcase_14 AC 90 ms
12,288 KB
testcase_15 AC 87 ms
12,160 KB
testcase_16 AC 86 ms
12,288 KB
testcase_17 AC 90 ms
12,160 KB
testcase_18 AC 94 ms
12,160 KB
testcase_19 AC 94 ms
12,160 KB
testcase_20 AC 87 ms
12,288 KB
testcase_21 AC 86 ms
12,032 KB
testcase_22 AC 97 ms
12,160 KB
testcase_23 AC 98 ms
12,288 KB
testcase_24 AC 963 ms
23,808 KB
testcase_25 AC 1,016 ms
24,704 KB
testcase_26 AC 998 ms
24,320 KB
testcase_27 AC 1,016 ms
24,704 KB
testcase_28 AC 917 ms
23,168 KB
testcase_29 TLE -
testcase_30 TLE -
testcase_31 TLE -
testcase_32 TLE -
testcase_33 TLE -
testcase_34 TLE -
testcase_35 -- -
testcase_36 -- -
testcase_37 -- -
testcase_38 -- -
testcase_39 -- -
testcase_40 -- -
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
if A[1]*B[2] < A[2]*B[1] then
    A[2],B[2],A[1],B[1]=A[1],B[1],A[2],B[2]
end
if A[0]*B[2] < A[2]*B[0] then
    A[0],B[0],A[2],B[2]=A[2],B[2],A[0],B[0]	
end

dp = Array.new((A[2]+1)*(A[1]+A[0]), 0)
ans=0
(0..(A[2]*(A[0]+A[1]))).each do |i|
    ans=[ans,dp[i]+(N-i)/A[2]*B[2]].max if N>=i
    (0..1).each do |j|
        dp[i+A[j]] = [dp[i+A[j]], dp[i]+B[j]].max
    end
end
puts (ans)
0