結果

問題 No.684 Prefix Parenthesis
ユーザー letrangerjpletrangerjp
提出日時 2018-05-11 23:56:44
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 474 bytes
コンパイル時間 156 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 24,960 KB
最終ジャッジ日時 2024-06-28 09:07:12
合計ジャッジ時間 12,015 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
12,032 KB
testcase_01 AC 86 ms
12,032 KB
testcase_02 AC 86 ms
12,032 KB
testcase_03 AC 215 ms
15,104 KB
testcase_04 AC 405 ms
19,712 KB
testcase_05 AC 444 ms
20,864 KB
testcase_06 AC 211 ms
15,104 KB
testcase_07 WA -
testcase_08 AC 123 ms
12,672 KB
testcase_09 WA -
testcase_10 AC 568 ms
24,448 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 429 ms
24,064 KB
testcase_14 AC 414 ms
23,680 KB
testcase_15 AC 209 ms
15,616 KB
testcase_16 AC 415 ms
23,936 KB
testcase_17 AC 260 ms
18,176 KB
testcase_18 AC 91 ms
12,288 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 578 ms
24,704 KB
testcase_22 AC 431 ms
24,704 KB
testcase_23 AC 421 ms
23,936 KB
testcase_24 AC 572 ms
24,832 KB
testcase_25 WA -
testcase_26 AC 88 ms
12,288 KB
testcase_27 AC 87 ms
12,032 KB
testcase_28 AC 88 ms
12,160 KB
testcase_29 WA -
testcase_30 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
S = gets.chomp

open = close = set = 0
a = []
S.chars{|c|
  if c == ?(
    open += 1
  else
    if open > 0
      open -= 1
      set += 1
    else
      close += 1
    end
  end
  a << [set, open, close]
}
a.sort_by!{|set, open, close|
  [-(open - close), -set]
}
open_cnt = close_cnt = cnt = 0
a.each_with_index{|(set, open, close), i|
  close_cnt += close if i != 0
  open_cnt += open if i != a.size - 1
  cnt += set
}
p (cnt + [close_cnt, open_cnt].min)*2
0