結果

問題 No.4 おもりと天秤
ユーザー Shintani TeppeiShintani Teppei
提出日時 2017-10-31 18:40:07
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 19,968 KB
最終ジャッジ日時 2024-11-22 11:09:37
合計ジャッジ時間 3,401 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
12,032 KB
testcase_01 AC 89 ms
12,032 KB
testcase_02 WA -
testcase_03 AC 86 ms
12,288 KB
testcase_04 AC 88 ms
12,288 KB
testcase_05 AC 138 ms
16,512 KB
testcase_06 WA -
testcase_07 AC 137 ms
16,512 KB
testcase_08 AC 87 ms
12,160 KB
testcase_09 AC 180 ms
19,968 KB
testcase_10 AC 140 ms
16,896 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 86 ms
12,160 KB
testcase_17 AC 87 ms
12,032 KB
testcase_18 WA -
testcase_19 AC 130 ms
16,000 KB
testcase_20 AC 130 ms
15,872 KB
testcase_21 AC 128 ms
16,000 KB
testcase_22 AC 130 ms
15,872 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #

n = gets.to_i
w = gets.split.map(&:to_i)
total = w.sum

if total % 2 == 1
    puts "impossible"
    exit 0
end

dp = [false] * (total / 2 + 1)
dp[0] = true

w.each do |wi|
    # p wi
    dp[wi] = true
    (0..(dp.size-1)).to_a.reverse.each do |num|
        # p "#{wi}, #{num}"
        # p dp
        dp[wi+num] = true if wi + num <= total / 2 && dp[wi]
    end
end
# p dp, w
puts dp[total/2] ? "possible" : "impossible"
0