結果

問題 No.4 おもりと天秤
ユーザー nakamura sosukenakamura sosuke
提出日時 2019-07-18 18:45:06
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 312 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 20,864 KB
最終ジャッジ日時 2024-06-07 15:59:58
合計ジャッジ時間 3,215 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 80 ms
12,032 KB
testcase_01 AC 81 ms
12,288 KB
testcase_02 AC 85 ms
12,160 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 123 ms
19,456 KB
testcase_06 AC 84 ms
12,160 KB
testcase_07 AC 119 ms
19,456 KB
testcase_08 AC 81 ms
12,288 KB
testcase_09 WA -
testcase_10 AC 128 ms
20,864 KB
testcase_11 AC 82 ms
12,160 KB
testcase_12 WA -
testcase_13 AC 81 ms
12,288 KB
testcase_14 AC 81 ms
12,288 KB
testcase_15 AC 81 ms
12,032 KB
testcase_16 AC 81 ms
12,288 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 115 ms
18,176 KB
testcase_20 AC 112 ms
17,792 KB
testcase_21 AC 111 ms
17,536 KB
testcase_22 AC 112 ms
18,048 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
W = gets.split.map(&:to_i).sort!

def f(n, ws)
  sum = 0; ws.each{ |w| sum += w }
  return false if sum.odd?

  dp = {}
  dp[0] = true

  ws.each do | w |
    dpc = dp.clone
    dpc.each do | k, v |
      dp[k+w] = dp[k]
    end
  end

  return dp[n/2]
end

puts f(N, W) ? 'possible' : 'impossible'
0