結果

問題 No.22 括弧の対応
ユーザー papipenpapipen
提出日時 2017-04-06 17:14:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 159 ms / 5,000 ms
コード長 685 bytes
コンパイル時間 2,771 ms
コンパイル使用メモリ 74,964 KB
実行使用メモリ 41,984 KB
最終ジャッジ日時 2024-07-20 07:21:05
合計ジャッジ時間 6,182 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 141 ms
41,984 KB
testcase_01 AC 138 ms
41,308 KB
testcase_02 AC 140 ms
41,448 KB
testcase_03 AC 156 ms
41,548 KB
testcase_04 AC 154 ms
41,612 KB
testcase_05 AC 155 ms
41,584 KB
testcase_06 AC 158 ms
41,356 KB
testcase_07 AC 155 ms
41,548 KB
testcase_08 AC 152 ms
41,496 KB
testcase_09 AC 149 ms
41,392 KB
testcase_10 AC 152 ms
41,448 KB
testcase_11 AC 154 ms
41,356 KB
testcase_12 AC 154 ms
41,388 KB
testcase_13 AC 156 ms
41,484 KB
testcase_14 AC 143 ms
41,392 KB
testcase_15 AC 159 ms
41,692 KB
testcase_16 AC 155 ms
41,728 KB
testcase_17 AC 136 ms
41,444 KB
testcase_18 AC 139 ms
41,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
class Kakko{
	public static void main(String args[]){
		Scanner s = new Scanner(System.in);
		int n = s.nextInt();
		int k = s.nextInt();
		String str = s.next();
		int count = 0;
		
		if(str.charAt(k - 1) == '('){
			for(int i = k; i < n; i++){
				char a = str.charAt(i);
				if(a == '('){
					count++;
				}else{
					count--;
				}
				if(count == -1){
					System.out.println(i + 1);
					System.exit(0);
				}
			}
		}else{
			for(int i = k - 2; i >= 0; i--){
				char a = str.charAt(i);
				if(a == ')'){
					count++;
				}else{
					count--;
				}        
				if(count == -1){
					System.out.println(i + 1);
					System.exit(0);
				}
			}
		}
	}
}
0