結果

問題 No.22 括弧の対応
ユーザー lrf141lrf141
提出日時 2016-11-27 10:15:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 181 ms / 5,000 ms
コード長 639 bytes
コンパイル時間 3,414 ms
コンパイル使用メモリ 74,952 KB
実行使用メモリ 41,404 KB
最終ジャッジ日時 2024-07-20 07:18:42
合計ジャッジ時間 7,374 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 132 ms
40,968 KB
testcase_01 AC 132 ms
41,136 KB
testcase_02 AC 148 ms
41,204 KB
testcase_03 AC 181 ms
41,068 KB
testcase_04 AC 167 ms
41,404 KB
testcase_05 AC 147 ms
41,092 KB
testcase_06 AC 150 ms
41,160 KB
testcase_07 AC 151 ms
41,152 KB
testcase_08 AC 150 ms
41,296 KB
testcase_09 AC 147 ms
41,216 KB
testcase_10 AC 149 ms
41,168 KB
testcase_11 AC 146 ms
41,196 KB
testcase_12 AC 145 ms
41,232 KB
testcase_13 AC 150 ms
41,356 KB
testcase_14 AC 138 ms
41,008 KB
testcase_15 AC 148 ms
41,204 KB
testcase_16 AC 147 ms
41,080 KB
testcase_17 AC 128 ms
41,240 KB
testcase_18 AC 129 ms
40,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

    }
}
0