結果

問題 No.22 括弧の対応
ユーザー tanukidontanukidon
提出日時 2018-04-25 01:48:49
言語 Ruby
(3.3.0)
結果
AC  
実行時間 4,588 ms / 5,000 ms
コード長 550 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 13,056 KB
最終ジャッジ日時 2024-09-27 10:01:54
合計ジャッジ時間 17,146 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
12,416 KB
testcase_01 AC 93 ms
12,288 KB
testcase_02 AC 93 ms
12,288 KB
testcase_03 AC 1,276 ms
13,056 KB
testcase_04 AC 348 ms
12,672 KB
testcase_05 AC 265 ms
12,672 KB
testcase_06 AC 2,233 ms
12,672 KB
testcase_07 AC 359 ms
12,800 KB
testcase_08 AC 134 ms
12,544 KB
testcase_09 AC 1,455 ms
12,544 KB
testcase_10 AC 190 ms
12,544 KB
testcase_11 AC 289 ms
12,672 KB
testcase_12 AC 1,337 ms
12,544 KB
testcase_13 AC 4,588 ms
12,928 KB
testcase_14 AC 124 ms
12,416 KB
testcase_15 AC 1,115 ms
13,056 KB
testcase_16 AC 1,613 ms
12,928 KB
testcase_17 AC 96 ms
12,288 KB
testcase_18 AC 94 ms
12,288 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n,m = gets.split.map(&:to_i)
s = gets.chomp.split("")
i = 0
j = 1
loop do
  if s[i] == "(" && s[j] == ")"
    s[i] = ""
    s[j] = ""
    if i+1 == m || j+1 == m
      if i+1 == m
        p j+1
      else
        p i+1
      end
      break
    end
    i = 0
    j = 1
  elsif s[i] == "(" && s[j] == "("
    if s[j-1] == ""
      t = 0
      t = j
      i = t
      j += 1
    else
      i += 1
      j += 1
    end
  elsif s[i] == "(" && s[j] == ""
    j += 1
  elsif s[i] == ""
    i += 1
    j += 1
  end
   i = 0 if i == n
   j = 1 if j == n
end
0