結果

問題 No.22 括弧の対応
ユーザー htensaihtensai
提出日時 2020-02-13 18:57:05
言語 Java
(openjdk 23)
結果
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
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

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