結果

問題 No.617 Nafmo、買い出しに行く
ユーザー simansiman
提出日時 2020-08-10 09:06:26
言語 Ruby
(3.3.0)
結果
AC  
実行時間 1,297 ms / 2,000 ms
コード長 271 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 27,904 KB
最終ジャッジ日時 2024-10-06 13:28:33
合計ジャッジ時間 9,495 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
14,976 KB
testcase_01 AC 80 ms
12,288 KB
testcase_02 AC 251 ms
14,848 KB
testcase_03 AC 504 ms
17,536 KB
testcase_04 AC 114 ms
12,928 KB
testcase_05 AC 591 ms
20,864 KB
testcase_06 AC 1,282 ms
27,904 KB
testcase_07 AC 1,297 ms
27,904 KB
testcase_08 AC 79 ms
12,160 KB
testcase_09 AC 78 ms
12,032 KB
testcase_10 AC 603 ms
23,296 KB
testcase_11 AC 621 ms
25,600 KB
testcase_12 AC 816 ms
19,328 KB
testcase_13 AC 602 ms
16,512 KB
testcase_14 AC 673 ms
17,664 KB
testcase_15 AC 85 ms
12,032 KB
testcase_16 AC 82 ms
12,160 KB
testcase_17 AC 78 ms
12,032 KB
testcase_18 AC 82 ms
12,032 KB
testcase_19 AC 79 ms
12,160 KB
testcase_20 AC 79 ms
12,032 KB
testcase_21 AC 81 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N, K = gets.split.map(&:to_i)
A = N.times.map { gets.to_i }

dp = Array.new(K + 1, false)
dp[0] = true
ans = 0

A.each do |a|
  ans.downto(0) do |v|
    next unless dp[v]

    nv = v + a

    next if K < nv

    dp[nv] = true
    ans = nv if ans < nv
  end
end

puts ans
0