結果

問題 No.22 括弧の対応
ユーザー noriocnorioc
提出日時 2015-11-13 08:31:57
言語 Scala(Beta)
(3.4.0)
結果
AC  
実行時間 1,082 ms / 5,000 ms
コード長 714 bytes
コンパイル時間 13,234 ms
コンパイル使用メモリ 256,960 KB
実行使用メモリ 64,256 KB
最終ジャッジ日時 2024-05-07 12:51:03
合計ジャッジ時間 30,633 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 926 ms
63,920 KB
testcase_01 AC 904 ms
64,016 KB
testcase_02 AC 910 ms
63,904 KB
testcase_03 AC 943 ms
64,088 KB
testcase_04 AC 941 ms
64,200 KB
testcase_05 AC 946 ms
64,028 KB
testcase_06 AC 951 ms
64,008 KB
testcase_07 AC 946 ms
64,032 KB
testcase_08 AC 926 ms
64,236 KB
testcase_09 AC 1,082 ms
64,256 KB
testcase_10 AC 945 ms
64,236 KB
testcase_11 AC 943 ms
64,024 KB
testcase_12 AC 931 ms
64,136 KB
testcase_13 AC 958 ms
64,028 KB
testcase_14 AC 933 ms
64,028 KB
testcase_15 AC 943 ms
64,148 KB
testcase_16 AC 950 ms
64,224 KB
testcase_17 AC 920 ms
63,784 KB
testcase_18 AC 915 ms
64,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math._
import util.control.Breaks._
import scala.collection.mutable.ArrayBuffer

object Main {
  def main(args: Array[String]) = {
    val sc = new java.util.Scanner(System.in)
    val n, k = sc.nextInt
    val s = sc.next

    val xs = new ArrayBuffer[(Int, Char)] // (インデックス, 括弧文字)
    breakable {
      for (i <- 0 to s.length-1) s(i) match {
        case '(' => xs.append((i, '('))
        case ')' => {
          assert(xs.last._2 == '(')
          if (i == k-1) {
            println(xs.last._1 + 1)
            break
          }
          if (xs.last._1 == k-1) {
            println(i+1)
            break
          }
        }
        xs.remove(xs.length-1)
      }
    }
  }
}
0