結果

問題 No.297 カードの数式
ユーザー cympfhcympfh
提出日時 2016-02-22 08:00:52
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 582 bytes
コンパイル時間 666 ms
コンパイル使用メモリ 11,908 KB
実行使用メモリ 16,092 KB
最終ジャッジ日時 2023-10-23 19:06:51
合計ジャッジ時間 4,118 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 83 ms
16,092 KB
testcase_01 AC 81 ms
16,092 KB
testcase_02 AC 83 ms
16,092 KB
testcase_03 AC 85 ms
16,092 KB
testcase_04 AC 83 ms
16,092 KB
testcase_05 AC 85 ms
16,092 KB
testcase_06 WA -
testcase_07 AC 82 ms
16,092 KB
testcase_08 AC 83 ms
16,092 KB
testcase_09 AC 85 ms
16,092 KB
testcase_10 AC 85 ms
16,092 KB
testcase_11 AC 84 ms
16,092 KB
testcase_12 AC 84 ms
16,092 KB
testcase_13 AC 84 ms
16,092 KB
testcase_14 AC 82 ms
16,092 KB
testcase_15 AC 84 ms
16,092 KB
testcase_16 AC 84 ms
16,092 KB
testcase_17 AC 84 ms
16,092 KB
testcase_18 AC 84 ms
16,092 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 83 ms
16,092 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

gets
xs = gets.chomp.split

tasu = xs.select{|c|c=="+"}.size
hiku = xs.select{|c|c=="-"}.size
xs = xs.select{|c|c!="+" and c!="-"}.map(&:to_i)
xs.sort!
xs.reverse!

exp = ""
i=xs.length
tasu.times {
  i -= 1
  exp = "#{exp} #{xs[i]} +"
}
hiku.times {
  i -= 1
  exp = "#{exp} #{xs[i]} -"
}
a=""
while i>0 do
  i -= 1
  a="#{xs[i]}#{a}"
end
exp += a
mini =eval exp

exp = ""
i=xs.length
hiku.times {
  i -= 1
  exp = "- #{xs[i]} #{exp}"
}
tasu.times {
  i -= 1
  exp = "+ #{xs[i]} #{exp}"
}
while i>0 do
  i -= 1
  exp = "#{xs[i]}#{exp}"
end

maxi = eval exp

puts "#{maxi} #{mini}"
0