結果

問題 No.4 おもりと天秤
ユーザー wotsushiwotsushi
提出日時 2016-12-24 08:20:39
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 429 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 25,600 KB
最終ジャッジ日時 2024-12-14 17:16:16
合計ジャッジ時間 56,405 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
25,216 KB
testcase_01 AC 89 ms
25,472 KB
testcase_02 AC 123 ms
24,960 KB
testcase_03 AC 90 ms
25,600 KB
testcase_04 AC 89 ms
18,984 KB
testcase_05 TLE -
testcase_06 AC 86 ms
19,108 KB
testcase_07 TLE -
testcase_08 AC 88 ms
25,344 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 89 ms
12,160 KB
testcase_12 AC 88 ms
12,288 KB
testcase_13 AC 87 ms
12,160 KB
testcase_14 AC 87 ms
12,160 KB
testcase_15 AC 87 ms
12,288 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 87 ms
12,288 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
W = gets.split.map(&:to_i)
def f(i, w)
  @dp ||= {}
  @dp[[i, w]] ||= if i == 0
                    w == 0 || w == W[0]
                  elsif w < W[i]
                    f(i - 1, w)
                  else
                    f(i - 1, w) || f(i - 1, w - W[i])
                  end
end
s = W.inject(:+)
ans = if s % 2 == 0 and f(N - 1, s / 2)
        "possible"
      else
        "impossible"
      end
puts ans
0