結果

問題 No.22 括弧の対応
ユーザー IJKTanabeIJKTanabe
提出日時 2017-10-20 00:57:05
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 387 ms / 5,000 ms
コード長 586 bytes
コンパイル時間 13,643 ms
コンパイル使用メモリ 440,816 KB
実行使用メモリ 57,612 KB
最終ジャッジ日時 2024-07-20 07:28:22
合計ジャッジ時間 21,205 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 360 ms
57,316 KB
testcase_01 AC 356 ms
57,308 KB
testcase_02 AC 355 ms
57,304 KB
testcase_03 AC 366 ms
57,460 KB
testcase_04 AC 363 ms
57,404 KB
testcase_05 AC 373 ms
57,552 KB
testcase_06 AC 370 ms
57,352 KB
testcase_07 AC 387 ms
57,472 KB
testcase_08 AC 383 ms
57,312 KB
testcase_09 AC 373 ms
57,328 KB
testcase_10 AC 365 ms
57,296 KB
testcase_11 AC 379 ms
57,392 KB
testcase_12 AC 367 ms
57,316 KB
testcase_13 AC 366 ms
57,448 KB
testcase_14 AC 362 ms
57,612 KB
testcase_15 AC 372 ms
57,472 KB
testcase_16 AC 375 ms
57,516 KB
testcase_17 AC 348 ms
57,512 KB
testcase_18 AC 353 ms
57,528 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:6:9: warning: variable 'l' is never used
    val l = Integer.parseInt(sc.next())
        ^

ソースコード

diff #

import java.util.*
fun main(args: Array<String>) {
    val map:Map<Char, Int> = mapOf('(' to 1, ')' to -1)
    
    val sc = Scanner(System.`in`)
    val l = Integer.parseInt(sc.next())
    val startIndex = Integer.parseInt(sc.next()) -1
    val b = sc.next() //括弧の文字列
    val startChar = b.get(startIndex) //開始位置の文字
    val dir = map.getOrElse(startChar, {0}) 
    
    var index = startIndex
    var count = 0
    do {
        index += dir
        count += if(b.get(index).equals(startChar)) 1 else -1
    } while(count > -1)
    
    println (index + 1)

}
0