結果

問題 No.22 括弧の対応
ユーザー zazaboonzazaboon
提出日時 2017-01-23 15:55:37
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 360 bytes
コンパイル時間 80 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-06-02 10:44:32
合計ジャッジ時間 2,647 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,160 KB
testcase_01 AC 92 ms
12,288 KB
testcase_02 AC 86 ms
12,160 KB
testcase_03 AC 89 ms
12,288 KB
testcase_04 AC 87 ms
12,288 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 88 ms
12,288 KB
testcase_07 WA -
testcase_08 AC 87 ms
12,288 KB
testcase_09 WA -
testcase_10 AC 87 ms
12,288 KB
testcase_11 AC 86 ms
12,288 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 88 ms
12,288 KB
testcase_16 AC 88 ms
12,288 KB
testcase_17 AC 85 ms
12,288 KB
testcase_18 AC 83 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,k = gets.chomp.split(" ").map(&:to_i)
s = gets.chomp
stack = []
x = 1
a = -1
s.each_char do |c|
  if(c == "(")
    stack.push(x) 
  else
    a = stack.pop
  end
  break if(x == k)
  x += 1
end
x = n
stack = []
b = -1
s.reverse.each_char do |c|
  if(c == ")")
    stack.push(x) 
  else
    b = stack.pop
  end
  break if(x == (k))
  x -= 1
end
puts [a,b].max
0