結果

問題 No.22 括弧の対応
ユーザー bigbear90560bigbear90560
提出日時 2015-09-17 18:21:01
言語 Java21
(openjdk 21)
結果
AC  
実行時間 142 ms / 5,000 ms
コード長 933 bytes
コンパイル時間 3,083 ms
コンパイル使用メモリ 78,124 KB
実行使用メモリ 41,456 KB
最終ジャッジ日時 2024-07-20 07:04:07
合計ジャッジ時間 6,195 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,192 KB
testcase_01 AC 118 ms
41,396 KB
testcase_02 AC 116 ms
41,060 KB
testcase_03 AC 117 ms
40,228 KB
testcase_04 AC 134 ms
41,080 KB
testcase_05 AC 134 ms
41,376 KB
testcase_06 AC 117 ms
40,104 KB
testcase_07 AC 133 ms
41,312 KB
testcase_08 AC 138 ms
41,096 KB
testcase_09 AC 128 ms
41,128 KB
testcase_10 AC 129 ms
41,408 KB
testcase_11 AC 112 ms
40,292 KB
testcase_12 AC 120 ms
40,824 KB
testcase_13 AC 132 ms
41,448 KB
testcase_14 AC 118 ms
41,436 KB
testcase_15 AC 142 ms
41,456 KB
testcase_16 AC 117 ms
40,240 KB
testcase_17 AC 103 ms
39,980 KB
testcase_18 AC 117 ms
41,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No022_SupprotBrackets {

	public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int a = sc.nextInt();	// 文字数
        int b = sc.nextInt();	// 対象番号
        String s = sc.next();	// 文字列

        final String LB = "(";
        final String RB = ")";

        int cnt = 0;

        if (LB.equals(s.substring(b-1,b))) {
	        for (int i=b; i<a; i++) {
	        	if (LB.equals(s.substring(i, i+1))) cnt++;
	        	if (RB.equals(s.substring(i, i+1))) cnt--;
	        	if (cnt < 0) {
	        		System.out.println(i+1);
	        		break;
	        	}
	        }
        } else {
	        for (int i=b; i>0; i--) {
	        	if (LB.equals(s.substring(i-1, i))) cnt--;
	        	if (RB.equals(s.substring(i-1, i))) cnt++;
	        	if (cnt <= 0) {
	        		System.out.println(i);
	        		break;
	        	}
	        }
        }
	}

}
0