結果

問題 No.2232 Miser's Gift
ユーザー s0919s0919
提出日時 2023-03-04 00:20:53
言語 Crystal
(1.11.2)
結果
AC  
実行時間 556 ms / 2,000 ms
コード長 414 bytes
コンパイル時間 12,900 ms
コンパイル使用メモリ 295,360 KB
実行使用メモリ 91,576 KB
最終ジャッジ日時 2024-09-18 00:43:39
合計ジャッジ時間 32,008 ms
ジャッジサーバーID
(参考情報)
judge6 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,812 KB
testcase_03 AC 533 ms
91,452 KB
testcase_04 AC 281 ms
91,492 KB
testcase_05 AC 61 ms
14,192 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 117 ms
6,940 KB
testcase_08 AC 546 ms
91,524 KB
testcase_09 AC 540 ms
91,420 KB
testcase_10 AC 556 ms
91,452 KB
testcase_11 AC 537 ms
91,492 KB
testcase_12 AC 549 ms
91,540 KB
testcase_13 AC 532 ms
91,484 KB
testcase_14 AC 528 ms
91,576 KB
testcase_15 AC 532 ms
91,452 KB
testcase_16 AC 529 ms
91,492 KB
testcase_17 AC 527 ms
91,492 KB
testcase_18 AC 523 ms
91,504 KB
testcase_19 AC 526 ms
91,464 KB
testcase_20 AC 525 ms
91,520 KB
testcase_21 AC 522 ms
91,496 KB
testcase_22 AC 525 ms
91,460 KB
testcase_23 AC 511 ms
91,352 KB
testcase_24 AC 509 ms
91,512 KB
testcase_25 AC 514 ms
91,508 KB
testcase_26 AC 517 ms
91,492 KB
testcase_27 AC 517 ms
91,560 KB
testcase_28 AC 438 ms
91,488 KB
testcase_29 AC 440 ms
91,472 KB
testcase_30 AC 445 ms
91,516 KB
testcase_31 AC 448 ms
91,456 KB
testcase_32 AC 448 ms
91,488 KB
testcase_33 AC 522 ms
91,528 KB
testcase_34 AC 543 ms
91,512 KB
testcase_35 AC 549 ms
91,524 KB
testcase_36 AC 531 ms
91,536 KB
testcase_37 AC 522 ms
91,540 KB
testcase_38 AC 8 ms
6,940 KB
testcase_39 AC 9 ms
6,940 KB
testcase_40 AC 9 ms
6,940 KB
testcase_41 AC 9 ms
6,944 KB
testcase_42 AC 9 ms
6,940 KB
testcase_43 AC 8 ms
6,944 KB
testcase_44 AC 9 ms
6,948 KB
testcase_45 AC 8 ms
6,940 KB
testcase_46 AC 9 ms
6,944 KB
testcase_47 AC 8 ms
6,940 KB
testcase_48 AC 2 ms
6,944 KB
testcase_49 AC 2 ms
6,944 KB
testcase_50 AC 2 ms
6,940 KB
testcase_51 AC 2 ms
6,944 KB
testcase_52 AC 2 ms
6,940 KB
testcase_53 AC 2 ms
6,940 KB
testcase_54 AC 2 ms
6,940 KB
testcase_55 AC 2 ms
6,944 KB
testcase_56 AC 2 ms
6,940 KB
testcase_57 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, w = read_line.split.map(&.to_i)
u = Array.new(n){0}
v = Array.new(n){0}

n.times do |i|
  u[i], v[i] = read_line.split.map(&.to_i)
end

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

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

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