結果

問題 No.22 括弧の対応
ユーザー fal_rndfal_rnd
提出日時 2017-04-02 20:43:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 155 ms / 5,000 ms
コード長 698 bytes
コンパイル時間 2,116 ms
コンパイル使用メモリ 74,856 KB
実行使用メモリ 41,400 KB
最終ジャッジ日時 2024-07-20 07:20:46
合計ジャッジ時間 5,710 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
41,004 KB
testcase_01 AC 135 ms
41,216 KB
testcase_02 AC 136 ms
41,052 KB
testcase_03 AC 151 ms
41,120 KB
testcase_04 AC 153 ms
41,204 KB
testcase_05 AC 153 ms
41,048 KB
testcase_06 AC 150 ms
41,364 KB
testcase_07 AC 152 ms
41,080 KB
testcase_08 AC 155 ms
41,328 KB
testcase_09 AC 148 ms
41,172 KB
testcase_10 AC 150 ms
41,196 KB
testcase_11 AC 146 ms
41,128 KB
testcase_12 AC 144 ms
41,400 KB
testcase_13 AC 147 ms
41,376 KB
testcase_14 AC 137 ms
40,908 KB
testcase_15 AC 136 ms
40,180 KB
testcase_16 AC 152 ms
41,092 KB
testcase_17 AC 135 ms
40,972 KB
testcase_18 AC 131 ms
41,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main{

	static final Scanner	s	=new Scanner(System.in);

	public static void main(String args[]){
		input();
		solve();
	}


	static int n,k;
	static String in;
	private static void input(){
		n=s.nextInt();
		k=s.nextInt()-1;
		in=s.next();
	}

	private static void solve(){
		int depth=0,i=k;
		switch(in.charAt(k)){
		case '(':
			while(true) {
				i++;
				if(depth==0&&in.charAt(i)==')') {
					System.out.println(i+1);
					return;
				}
				depth+=in.charAt(i)=='('?1:-1;
			}
		case ')':
			while(true) {
				i--;
				if(depth==0&&in.charAt(i)=='(') {
					System.out.println(i+1);
					return;
				}
				depth+=in.charAt(i)==')'?1:-1;
			}
		}
	}
}
0