結果

問題 No.22 括弧の対応
ユーザー 💕💖💞💕💖💞
提出日時 2017-04-08 19:50:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 349 ms / 5,000 ms
コード長 602 bytes
コンパイル時間 14,134 ms
コンパイル使用メモリ 446,384 KB
実行使用メモリ 51,996 KB
最終ジャッジ日時 2024-07-20 07:21:55
合計ジャッジ時間 21,745 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
51,684 KB
testcase_01 AC 320 ms
51,864 KB
testcase_02 AC 315 ms
51,592 KB
testcase_03 AC 346 ms
51,856 KB
testcase_04 AC 330 ms
51,856 KB
testcase_05 AC 329 ms
51,960 KB
testcase_06 AC 345 ms
51,696 KB
testcase_07 AC 349 ms
51,844 KB
testcase_08 AC 345 ms
51,904 KB
testcase_09 AC 331 ms
51,804 KB
testcase_10 AC 341 ms
51,912 KB
testcase_11 AC 328 ms
51,772 KB
testcase_12 AC 344 ms
51,848 KB
testcase_13 AC 338 ms
51,776 KB
testcase_14 AC 316 ms
51,796 KB
testcase_15 AC 346 ms
51,832 KB
testcase_16 AC 348 ms
51,996 KB
testcase_17 AC 318 ms
51,728 KB
testcase_18 AC 315 ms
51,480 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^

ソースコード

diff #

fun main(args: Array<String>) {
  val (N, K) = readLine()!!.split(" ").map{ x -> x.toInt() }
  val se     = readLine()!!
  val start  = se[K-1]
  if(start == '(') {
    var c = 0
    for(i in (K..N) ) {
      if(se[i] == '(') c++
      else{
        if(c==0) {
          println(i+1)
          break
        }else{
          c--
        }
      }
    }
  } else if( start == ')') {
    var c = 0
    for(i in (K-2 downTo 0) ) {
      if(se[i] == ')') {
        c++
      }
      else{
        if(c==0) {
          println(i+1)
          break
        }else{
          c--
        }
      }
    }
  }
}
0