結果

問題 No.22 括弧の対応
ユーザー history_Basshistory_Bass
提出日時 2017-03-03 12:03:22
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 768 bytes
コンパイル時間 4,178 ms
コンパイル使用メモリ 75,096 KB
実行使用メモリ 54,680 KB
最終ジャッジ日時 2024-06-22 04:43:08
合計ジャッジ時間 7,076 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 127 ms
54,092 KB
testcase_01 AC 126 ms
54,136 KB
testcase_02 AC 128 ms
54,088 KB
testcase_03 AC 174 ms
54,276 KB
testcase_04 AC 166 ms
54,292 KB
testcase_05 AC 165 ms
54,252 KB
testcase_06 AC 172 ms
54,308 KB
testcase_07 WA -
testcase_08 AC 164 ms
54,244 KB
testcase_09 WA -
testcase_10 AC 175 ms
54,328 KB
testcase_11 AC 163 ms
54,316 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 AC 176 ms
53,888 KB
testcase_16 AC 182 ms
54,300 KB
testcase_17 AC 127 ms
54,084 KB
testcase_18 AC 126 ms
54,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class arc {
	public static void main(String args[]){
		
		//文字の読み込み
		Scanner sc=new Scanner(System.in);
		String line1=sc.nextLine();
		String line2=sc.nextLine();
		//文字の分割
		String[] ch1=line1.split(" ",0);//ch1[0]=the amount ch1[1]=question
		String[] ch2=line2.split("",0);//arcs
		
		int judge=0;
		int i;//=Integer.parseInt(ch1[1]);//この括弧のついの括弧の番号を求める
		int j=Integer.parseInt(ch1[0]);//括弧の総数
		for(i=Integer.parseInt(ch1[1])-1;i<j;i++){
	
			switch(ch2[i]){
				case "(": 
					judge++;
					break;
				case ")": 
					judge--;
					break;
			}
			
			if(judge==0){
				break;
			}
			
			if(i==(j-1)){
				i=-1;
			}
		}

		System.out.println(i+1);
		
	}
}
0