結果

問題 No.4 おもりと天秤
ユーザー nakamura sosukenakamura sosuke
提出日時 2019-07-18 17:51:01
言語 Ruby
(3.4.1)
結果
MLE  
実行時間 -
コード長 365 bytes
コンパイル時間 151 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 822,300 KB
最終ジャッジ日時 2024-12-25 22:34:15
合計ジャッジ時間 54,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
12,416 KB
testcase_01 AC 84 ms
12,416 KB
testcase_02 AC 100 ms
13,056 KB
testcase_03 AC 80 ms
12,160 KB
testcase_04 AC 92 ms
12,544 KB
testcase_05 MLE -
testcase_06 AC 247 ms
12,288 KB
testcase_07 MLE -
testcase_08 AC 258 ms
12,288 KB
testcase_09 TLE -
testcase_10 TLE -
testcase_11 AC 174 ms
12,032 KB
testcase_12 AC 88 ms
12,160 KB
testcase_13 AC 87 ms
12,160 KB
testcase_14 AC 81 ms
12,032 KB
testcase_15 AC 85 ms
12,288 KB
testcase_16 AC 81 ms
12,288 KB
testcase_17 AC 81 ms
12,160 KB
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 MLE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

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

sum = 0; W.each{ |w| sum += w }
if sum.odd?
  puts 'impossible'
  exit
end

half = sum / 2
candi = W.select{ |w| w <= half }
1.upto(N/2) do | cnt |
  candi.combination(cnt).to_a.each do | ws |
    sum = 0; ws.each{ |w| sum += w }
    if sum == half
      puts 'possible'
      exit
    end
  end
end
puts 'impossible'
0