結果

問題 No.22 括弧の対応
ユーザー kohaku_kohakukohaku_kohaku
提出日時 2016-11-14 01:33:55
言語 Java21
(openjdk 21)
結果
AC  
実行時間 220 ms / 5,000 ms
コード長 766 bytes
コンパイル時間 2,446 ms
コンパイル使用メモリ 74,888 KB
実行使用メモリ 42,540 KB
最終ジャッジ日時 2024-07-20 07:18:03
合計ジャッジ時間 7,112 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 172 ms
40,860 KB
testcase_01 AC 167 ms
41,072 KB
testcase_02 AC 166 ms
40,972 KB
testcase_03 AC 204 ms
42,436 KB
testcase_04 AC 206 ms
41,716 KB
testcase_05 AC 203 ms
42,384 KB
testcase_06 AC 210 ms
41,712 KB
testcase_07 AC 212 ms
42,480 KB
testcase_08 AC 220 ms
41,872 KB
testcase_09 AC 194 ms
41,936 KB
testcase_10 AC 211 ms
42,540 KB
testcase_11 AC 190 ms
41,648 KB
testcase_12 AC 202 ms
41,980 KB
testcase_13 AC 190 ms
41,936 KB
testcase_14 AC 177 ms
41,664 KB
testcase_15 AC 203 ms
42,500 KB
testcase_16 AC 201 ms
42,064 KB
testcase_17 AC 154 ms
41,628 KB
testcase_18 AC 165 ms
41,232 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int N = sc.nextInt();
        int K = sc.nextInt();
        String S = sc.next();
        String [] arr = S.split("");
        int a=0;
        if( arr[K-1].equals(")") ){
            while(a!=-1){
                K--;
                if( arr[K-1].equals(")") ){
                    a++;
                }else{
                    a--;
                }
            }
        }else{
            while(a!=-1){
                K++;
                if( arr[K-1].equals("(") ){
                    a++;
                }else{
                    a--;
                }
            }
        }
        System.out.println(K);
    }
}
0