結果

問題 No.2232 Miser's Gift
ユーザー s0919s0919
提出日時 2023-03-03 23:32:59
言語 Ruby
(3.3.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 364 bytes
コンパイル時間 456 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 92,288 KB
最終ジャッジ日時 2024-09-18 00:34:15
合計ジャッジ時間 63,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 73 ms
12,032 KB
testcase_02 AC 74 ms
12,160 KB
testcase_03 AC 1,835 ms
92,032 KB
testcase_04 AC 1,496 ms
92,032 KB
testcase_05 AC 263 ms
20,096 KB
testcase_06 AC 76 ms
12,160 KB
testcase_07 AC 175 ms
14,720 KB
testcase_08 TLE -
testcase_09 AC 1,822 ms
92,160 KB
testcase_10 AC 1,841 ms
92,160 KB
testcase_11 AC 1,846 ms
92,160 KB
testcase_12 AC 1,851 ms
92,032 KB
testcase_13 AC 1,814 ms
92,032 KB
testcase_14 AC 1,809 ms
92,160 KB
testcase_15 AC 1,845 ms
92,160 KB
testcase_16 AC 1,829 ms
92,160 KB
testcase_17 AC 1,812 ms
92,288 KB
testcase_18 AC 1,851 ms
92,288 KB
testcase_19 AC 1,800 ms
92,288 KB
testcase_20 AC 1,833 ms
92,288 KB
testcase_21 AC 1,846 ms
92,160 KB
testcase_22 AC 1,822 ms
92,160 KB
testcase_23 AC 1,922 ms
92,288 KB
testcase_24 AC 1,838 ms
92,288 KB
testcase_25 AC 1,846 ms
92,160 KB
testcase_26 AC 1,828 ms
92,288 KB
testcase_27 AC 1,816 ms
92,160 KB
testcase_28 AC 1,732 ms
92,288 KB
testcase_29 AC 1,728 ms
92,288 KB
testcase_30 AC 1,704 ms
92,160 KB
testcase_31 AC 1,743 ms
92,160 KB
testcase_32 AC 1,731 ms
92,160 KB
testcase_33 AC 1,821 ms
92,160 KB
testcase_34 AC 1,863 ms
92,160 KB
testcase_35 AC 1,862 ms
92,160 KB
testcase_36 AC 1,861 ms
92,160 KB
testcase_37 AC 1,884 ms
92,160 KB
testcase_38 AC 96 ms
12,544 KB
testcase_39 AC 92 ms
12,672 KB
testcase_40 AC 92 ms
12,544 KB
testcase_41 AC 92 ms
12,800 KB
testcase_42 AC 93 ms
12,544 KB
testcase_43 AC 92 ms
12,672 KB
testcase_44 AC 97 ms
12,544 KB
testcase_45 AC 92 ms
12,672 KB
testcase_46 AC 97 ms
12,800 KB
testcase_47 AC 98 ms
12,544 KB
testcase_48 AC 76 ms
12,288 KB
testcase_49 AC 76 ms
12,160 KB
testcase_50 AC 77 ms
12,032 KB
testcase_51 AC 76 ms
12,032 KB
testcase_52 AC 77 ms
12,160 KB
testcase_53 AC 76 ms
12,160 KB
testcase_54 AC 76 ms
12,160 KB
testcase_55 AC 75 ms
12,160 KB
testcase_56 AC 75 ms
12,160 KB
testcase_57 AC 80 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n, w = gets.chomp.split.map(&:to_i)
u, v = n.times.map{gets.chomp.split.map(&:to_i)}.transpose

d = Array.new(n+1).map{Array.new(w+1, 0)}
d[0][0] = 0

n.times do |i|
  (w+1).times do |j|
    if j - u[i] >= 0
      d[i+1][j] = [d[i][j], d[i][j-u[i]] + v[i]].max
    else
      d[i+1][j] = d[i][j]
    end
  end
end

puts w.times.map {|i| d[n][w] - d[n][w-i-1] + 1 }
0