結果

問題 No.22 括弧の対応
ユーザー k_kadorak_kadora
提出日時 2015-06-10 23:23:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 153 ms / 5,000 ms
コード長 759 bytes
コンパイル時間 5,091 ms
コンパイル使用メモリ 77,348 KB
実行使用メモリ 41,484 KB
最終ジャッジ日時 2024-07-20 07:02:39
合計ジャッジ時間 6,300 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
41,224 KB
testcase_01 AC 116 ms
41,256 KB
testcase_02 AC 117 ms
41,096 KB
testcase_03 AC 120 ms
40,648 KB
testcase_04 AC 140 ms
41,204 KB
testcase_05 AC 141 ms
41,048 KB
testcase_06 AC 131 ms
41,004 KB
testcase_07 AC 137 ms
41,208 KB
testcase_08 AC 128 ms
41,100 KB
testcase_09 AC 114 ms
40,476 KB
testcase_10 AC 130 ms
41,196 KB
testcase_11 AC 130 ms
41,208 KB
testcase_12 AC 138 ms
41,184 KB
testcase_13 AC 130 ms
41,484 KB
testcase_14 AC 124 ms
41,476 KB
testcase_15 AC 153 ms
41,404 KB
testcase_16 AC 132 ms
41,136 KB
testcase_17 AC 116 ms
40,976 KB
testcase_18 AC 119 ms
41,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
public class Kakko{
	public static void main(String[] arg){
		Scanner sc = new Scanner(System.in);
		int n,k,res=0,count=0,kc,c,temp=0;
		String s;
		n = sc.nextInt();
		k = sc.nextInt();
		s = sc.next();
		int[] m = new int[n];
		for(int i = 0;i<n;i++){
			if(s.charAt(i) == '('){
				count++;
				m[i] = count;
			}else{
				m[i] = count;
				count--;
			}
		}
		count = 0;
		kc = m[k-1];
		for(int i = 0;i<n;i++){
			if(m[i] == kc){
				count++;
				if(i == k - 1){
					c=count;
					if(c%2 == 0){
						res = temp+1;
						break;
					}else{
						i++;
						for(;i<n;i++){
							if(m[i] == kc){
								res = i+1;
								break;
							}
						}
						break;
					}
				}
				temp = i;
			}
		}
		System.out.println(res);
	}
}
0