結果

問題 No.22 括弧の対応
ユーザー Mcpu3Mcpu3
提出日時 2018-08-28 21:02:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 149 ms / 5,000 ms
コード長 454 bytes
コンパイル時間 2,221 ms
コンパイル使用メモリ 73,912 KB
実行使用メモリ 41,300 KB
最終ジャッジ日時 2024-07-20 07:34:10
合計ジャッジ時間 5,121 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 123 ms
41,048 KB
testcase_01 AC 123 ms
41,252 KB
testcase_02 AC 112 ms
40,532 KB
testcase_03 AC 135 ms
41,164 KB
testcase_04 AC 136 ms
41,052 KB
testcase_05 AC 137 ms
40,960 KB
testcase_06 AC 140 ms
41,060 KB
testcase_07 AC 145 ms
41,064 KB
testcase_08 AC 149 ms
40,960 KB
testcase_09 AC 139 ms
40,868 KB
testcase_10 AC 136 ms
41,300 KB
testcase_11 AC 142 ms
40,984 KB
testcase_12 AC 142 ms
41,140 KB
testcase_13 AC 135 ms
40,908 KB
testcase_14 AC 129 ms
40,904 KB
testcase_15 AC 124 ms
40,552 KB
testcase_16 AC 126 ms
40,360 KB
testcase_17 AC 123 ms
40,892 KB
testcase_18 AC 122 ms
41,036 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

class Main{
	public static void main(String[] args) {
		Scanner sc=new Scanner(System.in);
		int n=sc.nextInt(),k=sc.nextInt(),f=0,b=0,i;
		String s=sc.next();
		sc.close();
		if(s.charAt(k-1)==')') {
			for(i=k-2;f-b!=1;i--) {
				if(s.charAt(i)==')') b++;
				else f++;
			}
			i+=2;
		}
		else {
			for(i=k;b-f!=1;i++) {
				if(s.charAt(i)=='(') f++;
				else b++;
			}
		}
		System.out.print(i);
	}
}
0