結果

問題 No.22 括弧の対応
ユーザー めうめう🎒めうめう🎒
提出日時 2016-05-08 23:08:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 179 ms / 5,000 ms
コード長 1,044 bytes
コンパイル時間 2,350 ms
コンパイル使用メモリ 77,780 KB
実行使用メモリ 41,808 KB
最終ジャッジ日時 2024-07-20 07:12:45
合計ジャッジ時間 6,390 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 157 ms
41,440 KB
testcase_01 AC 157 ms
41,052 KB
testcase_02 AC 157 ms
40,916 KB
testcase_03 AC 173 ms
41,428 KB
testcase_04 AC 172 ms
41,744 KB
testcase_05 AC 172 ms
41,132 KB
testcase_06 AC 171 ms
41,528 KB
testcase_07 AC 172 ms
41,472 KB
testcase_08 AC 172 ms
41,376 KB
testcase_09 AC 179 ms
41,376 KB
testcase_10 AC 173 ms
41,268 KB
testcase_11 AC 172 ms
41,076 KB
testcase_12 AC 155 ms
41,436 KB
testcase_13 AC 155 ms
41,616 KB
testcase_14 AC 148 ms
41,776 KB
testcase_15 AC 165 ms
41,808 KB
testcase_16 AC 160 ms
41,420 KB
testcase_17 AC 151 ms
41,312 KB
testcase_18 AC 146 ms
41,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	private String str;
	private int a;
	private int n;
	
	public void setStr(String str){
		this.str = str;
	}
	
	public void setA(int a){
		this.a = a;
	}
	
	public void setN(int n){
		this.n = n;
	}
	
	public int run(){
		int now_r = 0;
		int now_l = 0;
		int ans = 0;
		char[] s = str.toCharArray();
		if(s[a] == '('){
			now_l = 1;
			for(int i = a+1;i <= n;i++){
				if(s[i] == '('){
					now_l++;
				}else if(s[i] == ')'){
					now_r++;
				}
				if(now_r == now_l){
					ans = i;
					break;
				}
			}
		}else{
			now_r = 1;
			for(int i = a-1;i >= 0;i--){
				if(s[i] == '('){
					now_l++;
				}else if(s[i] == ')'){
					now_r++;
				}
				if(now_r == now_l){
					ans = i;
					break;
				}
			}
		}
		return ans + 1;
	}
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		Main m = new Main();
		int n = sc.nextInt();
		m.setN(n);
		int a = sc.nextInt();
		a--;
		m.setA(a);
		String str = sc.next();
		m.setStr(str);
		System.out.println(m.run());
	}
}
0