結果

問題 No.22 括弧の対応
ユーザー IJKTanabeIJKTanabe
提出日時 2017-10-19 23:05:35
言語 Kotlin
(1.9.23)
結果
AC  
実行時間 341 ms / 5,000 ms
コード長 489 bytes
コンパイル時間 9,975 ms
コンパイル使用メモリ 427,344 KB
実行使用メモリ 51,276 KB
最終ジャッジ日時 2024-07-20 07:27:41
合計ジャッジ時間 17,016 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 298 ms
51,132 KB
testcase_01 AC 307 ms
50,872 KB
testcase_02 AC 313 ms
51,064 KB
testcase_03 AC 330 ms
51,248 KB
testcase_04 AC 315 ms
51,076 KB
testcase_05 AC 322 ms
51,132 KB
testcase_06 AC 320 ms
51,148 KB
testcase_07 AC 315 ms
51,056 KB
testcase_08 AC 324 ms
51,176 KB
testcase_09 AC 317 ms
50,996 KB
testcase_10 AC 325 ms
51,148 KB
testcase_11 AC 312 ms
51,188 KB
testcase_12 AC 333 ms
51,212 KB
testcase_13 AC 341 ms
51,224 KB
testcase_14 AC 305 ms
51,064 KB
testcase_15 AC 329 ms
51,040 KB
testcase_16 AC 323 ms
51,276 KB
testcase_17 AC 303 ms
51,132 KB
testcase_18 AC 313 ms
51,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.kt:2:10: warning: parameter 'args' is never used
fun main(args: Array<String>) {
         ^
Main.kt:4:9: warning: variable 'l' is never used
    val l = Integer.parseInt(cin.next())
        ^

ソースコード

diff #

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