結果

問題 No.22 括弧の対応
ユーザー バカらっくバカらっく
提出日時 2019-09-02 00:27:28
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 382 ms / 5,000 ms
コード長 691 bytes
コンパイル時間 12,250 ms
コンパイル使用メモリ 442,696 KB
実行使用メモリ 52,896 KB
最終ジャッジ日時 2024-07-20 07:45:12
合計ジャッジ時間 20,892 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 309 ms
51,716 KB
testcase_01 AC 292 ms
51,536 KB
testcase_02 AC 291 ms
51,568 KB
testcase_03 AC 347 ms
52,896 KB
testcase_04 AC 309 ms
52,176 KB
testcase_05 AC 312 ms
52,244 KB
testcase_06 AC 319 ms
52,204 KB
testcase_07 AC 318 ms
52,348 KB
testcase_08 AC 318 ms
52,304 KB
testcase_09 AC 304 ms
52,100 KB
testcase_10 AC 382 ms
52,248 KB
testcase_11 AC 365 ms
52,156 KB
testcase_12 AC 372 ms
52,068 KB
testcase_13 AC 336 ms
52,296 KB
testcase_14 AC 296 ms
52,016 KB
testcase_15 AC 330 ms
52,380 KB
testcase_16 AC 341 ms
52,440 KB
testcase_17 AC 291 ms
51,760 KB
testcase_18 AC 294 ms
51,652 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:1:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:2:10: warning: variable 'n' is never used
    val (n,k) = readLine()!!.split(" ").map { it.toInt() }
         ^

ソースコード

diff #

fun main(args: Array<String>) {
    val (n,k) = readLine()!!.split(" ").map { it.toInt() }
    val s = readLine()!!
    val list = mutableListOf<Kakko>()
    s.indices.forEach { list.add(Kakko(it, s[it] == '(')) }
    var ans = -1
    while (list.isNotEmpty()) {
        val idx = list.indexOfLast { it.isLeft }
        val right = list[idx + 1]
        val left = list[idx]
        if(right.index == k - 1) {
            ans = left.index
            break
        } else if(left.index == k - 1) {
            ans = right.index
            break
        }
        list.removeAt(idx + 1)
        list.removeAt(idx)
    }
    println(ans + 1)
}

class Kakko(val index:Int, val isLeft:Boolean)
0