結果
| 問題 |
No.297 カードの数式
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-11-07 00:57:59 |
| 言語 | Ruby (3.4.1) |
| 結果 |
RE
|
| 実行時間 | - |
| コード長 | 647 bytes |
| コンパイル時間 | 71 ms |
| コンパイル使用メモリ | 7,680 KB |
| 実行使用メモリ | 12,416 KB |
| 最終ジャッジ日時 | 2024-09-13 13:27:58 |
| 合計ジャッジ時間 | 3,301 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 20 RE * 3 |
コンパイルメッセージ
Syntax OK
ソースコード
N = gets.to_i
cn,oprs = gets.split.group_by{|x| %w(+ -).include? x}.values
cn = cn.sort.reverse
oprs = oprs.sort
ansmax,ansmin = [0,0]
slot = oprs.size + 1
max = cn[0..(-slot)].join.to_i
ansmax = max
cn.last(slot-1).zip(oprs) do |c,opr|
ansmax = opr.to_sym.to_proc.call(ansmax,c.to_i)
end
if oprs.last == "-"
ansmin = -max
oprs.pop
oprs = oprs.reverse << "+"
cn.last(slot-1).zip(oprs) do |c,opr|
ansmin = opr.to_sym.to_proc.call(ansmin,c.to_i)
end
else
a = Array.new(slot){ "" }
index = (0..slot-1).cycle
cn.each{|c| i = index.next; a[i] = c + a[i]}
ansmin = a.map(&:to_i).inject(:+)
end
puts [ansmax,ansmin].join(" ")