結果

問題 No.297 カードの数式
ユーザー urutomurutom
提出日時 2019-04-05 01:03:00
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 449 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 7,168 KB
実行使用メモリ 12,160 KB
最終ジャッジ日時 2024-06-09 08:30:55
合計ジャッジ時間 3,504 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
11,904 KB
testcase_01 AC 88 ms
11,904 KB
testcase_02 AC 83 ms
12,160 KB
testcase_03 AC 82 ms
12,032 KB
testcase_04 AC 93 ms
12,032 KB
testcase_05 AC 87 ms
12,032 KB
testcase_06 WA -
testcase_07 AC 87 ms
12,160 KB
testcase_08 AC 83 ms
11,904 KB
testcase_09 AC 83 ms
11,776 KB
testcase_10 AC 88 ms
12,160 KB
testcase_11 AC 88 ms
12,032 KB
testcase_12 AC 90 ms
11,904 KB
testcase_13 AC 89 ms
11,904 KB
testcase_14 AC 85 ms
12,160 KB
testcase_15 AC 81 ms
12,160 KB
testcase_16 AC 83 ms
11,776 KB
testcase_17 AC 84 ms
12,032 KB
testcase_18 AC 83 ms
11,904 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 AC 89 ms
12,032 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Main.rb:5: warning: assigned but unused variable - c
Syntax OK

ソースコード

diff #

n=gets.to_i
plus=0
minus=0
fig=[]
c=gets.split.each{|c|
  if c==?+
    plus+=1
  elsif c==?-
    minus+=1
  else
    fig << c.to_i
  end
}

max=min=0
max_fig=fig.sort.reverse
minus.times{max-=max_fig.pop}
plus.times{max+=max_fig.pop}
max+=max_fig.join.to_i
if minus==0
  min=max
else
  min_fig=fig.sort
  min=min_fig.shift
  plus.times{min+=min_fig.shift}
  (minus-1).times{min-=min_fig.shift}
  min-=min_fig.reverse.join.to_i
end
puts [max,min]*" "
0