結果

問題 No.22 括弧の対応
ユーザー 37zigen37zigen
提出日時 2016-04-01 17:40:44
言語 Java21
(openjdk 21)
結果
AC  
実行時間 140 ms / 5,000 ms
コード長 755 bytes
コンパイル時間 3,232 ms
コンパイル使用メモリ 77,308 KB
実行使用メモリ 41,488 KB
最終ジャッジ日時 2024-07-20 07:11:22
合計ジャッジ時間 5,022 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 114 ms
41,012 KB
testcase_01 AC 117 ms
40,900 KB
testcase_02 AC 120 ms
41,400 KB
testcase_03 AC 119 ms
40,516 KB
testcase_04 AC 139 ms
41,488 KB
testcase_05 AC 129 ms
41,128 KB
testcase_06 AC 134 ms
41,304 KB
testcase_07 AC 126 ms
41,168 KB
testcase_08 AC 135 ms
41,124 KB
testcase_09 AC 120 ms
40,140 KB
testcase_10 AC 117 ms
40,188 KB
testcase_11 AC 122 ms
41,284 KB
testcase_12 AC 116 ms
40,220 KB
testcase_13 AC 140 ms
41,116 KB
testcase_14 AC 121 ms
41,160 KB
testcase_15 AC 125 ms
40,504 KB
testcase_16 AC 137 ms
41,392 KB
testcase_17 AC 107 ms
39,876 KB
testcase_18 AC 117 ms
40,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder022;
import java.util.Scanner;
public class Main {
	public static void main(String[] args){
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt();//文字数
		int k=sc.nextInt();//何文字目の対応を取るか(1<=k<=n)
		String s=sc.next();
		int[] table=new int[n];
		int count=0;
		for(int i=0;i<n;i++){
			if(s.charAt(i)=='('){
				count--;
				table[i]=count;
			}else if(s.charAt(i)==')'){
				table[i]=count;
				count++;
			}
		}
		if(s.charAt(k-1)=='('){
			for(int i=k;i<n;i++){
				if(table[i]==table[k-1]){
					System.out.println(i+1);
					return;
				}
			}
		}else if(s.charAt(k-1)==')'){
			for(int i=k-2;i>=0;i--){
				if(table[i]==table[k-1]){
					System.out.println(i+1);
					return;
				}
			}
		}
	}
}
0