結果

問題 No.22 括弧の対応
ユーザー htensaihtensai
提出日時 2020-02-13 18:57:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 954 bytes
コンパイル時間 2,409 ms
コンパイル使用メモリ 78,204 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-07-20 07:48:06
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
41,156 KB
testcase_01 AC 132 ms
41,016 KB
testcase_02 AC 135 ms
41,284 KB
testcase_03 AC 153 ms
41,484 KB
testcase_04 AC 148 ms
41,228 KB
testcase_05 AC 151 ms
41,120 KB
testcase_06 AC 151 ms
41,248 KB
testcase_07 AC 152 ms
41,392 KB
testcase_08 AC 152 ms
41,140 KB
testcase_09 AC 150 ms
41,236 KB
testcase_10 AC 150 ms
41,284 KB
testcase_11 AC 148 ms
41,220 KB
testcase_12 AC 151 ms
41,360 KB
testcase_13 AC 147 ms
41,444 KB
testcase_14 AC 137 ms
41,084 KB
testcase_15 AC 140 ms
40,400 KB
testcase_16 AC 152 ms
41,356 KB
testcase_17 AC 138 ms
41,080 KB
testcase_18 AC 137 ms
41,320 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();
		char[] arr = sc.next().toCharArray();
		int x = -1;
		int current = 0;
		if (arr[k - 1] == '(') {
    		for (int i = 0; i < n; i++) {
    		    if (i + 1 == k) {
    		        x = current;
    		    }
    		    if (arr[i] == '(') {
    		        current++;
    		    } else {
    		        current--;
    		    }
    		    if (current == x) {
    		        System.out.println(i + 1);
    		        return;
    		    }
    		}
		} else {
		    for (int i = n - 1; i >= 0; i--) {
    		    if (i + 1 == k) {
    		        x = current;
    		    }
    		    if (arr[i] == ')') {
    		        current++;
    		    } else {
    		        current--;
    		    }
    		    if (current == x) {
    		        System.out.println(i + 1);
    		        return;
    		    }
		    }
		}
   }
}
0