結果

問題 No.22 括弧の対応
ユーザー jp_stejp_ste
提出日時 2016-02-19 08:44:05
言語 Java21
(openjdk 21)
結果
AC  
実行時間 144 ms / 5,000 ms
コード長 681 bytes
コンパイル時間 1,943 ms
コンパイル使用メモリ 74,760 KB
実行使用メモリ 41,672 KB
最終ジャッジ日時 2024-07-20 07:09:36
合計ジャッジ時間 5,192 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
41,184 KB
testcase_01 AC 109 ms
40,136 KB
testcase_02 AC 122 ms
40,988 KB
testcase_03 AC 138 ms
41,352 KB
testcase_04 AC 129 ms
41,312 KB
testcase_05 AC 133 ms
41,236 KB
testcase_06 AC 138 ms
41,312 KB
testcase_07 AC 142 ms
41,108 KB
testcase_08 AC 143 ms
41,520 KB
testcase_09 AC 115 ms
40,372 KB
testcase_10 AC 131 ms
41,324 KB
testcase_11 AC 144 ms
41,308 KB
testcase_12 AC 136 ms
41,672 KB
testcase_13 AC 140 ms
41,512 KB
testcase_14 AC 123 ms
41,020 KB
testcase_15 AC 138 ms
41,176 KB
testcase_16 AC 141 ms
41,292 KB
testcase_17 AC 123 ms
41,228 KB
testcase_18 AC 126 ms
41,268 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		try (Scanner scan = new Scanner(System.in)) {
			int N = scan.nextInt();
			int K = scan.nextInt();
			char S[] = scan.next().toCharArray();
			
			int count = 0;
			if(S[K-1] == '(') {
				for(int i=K-1; i<N; i++) {
					if(S[i] == '(') {
						count++;
					} else  {
						count--;
						if(count == 0) {
							System.out.println(i+1);
							break;
						}
					}
				}
			} else {
				for(int i=K-1; i>=0; i--) {
					if(S[i] == ')') {
						count++;
					} else  {
						count--;
						if(count == 0) {
							System.out.println(i+1);
							break;
						}
					}
				}
			}
		}
	}
}
0