結果

問題 No.22 括弧の対応
ユーザー jp_stejp_ste
提出日時 2016-02-19 00:07:21
言語 Java21
(openjdk 21)
結果
AC  
実行時間 164 ms / 5,000 ms
コード長 914 bytes
コンパイル時間 2,463 ms
コンパイル使用メモリ 78,056 KB
実行使用メモリ 41,700 KB
最終ジャッジ日時 2024-07-20 07:09:21
合計ジャッジ時間 5,328 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,084 KB
testcase_01 AC 124 ms
41,448 KB
testcase_02 AC 122 ms
40,764 KB
testcase_03 AC 164 ms
41,580 KB
testcase_04 AC 137 ms
41,076 KB
testcase_05 AC 128 ms
41,316 KB
testcase_06 AC 136 ms
41,296 KB
testcase_07 AC 142 ms
41,584 KB
testcase_08 AC 144 ms
41,388 KB
testcase_09 AC 138 ms
41,308 KB
testcase_10 AC 137 ms
41,304 KB
testcase_11 AC 147 ms
41,252 KB
testcase_12 AC 120 ms
40,604 KB
testcase_13 AC 134 ms
41,440 KB
testcase_14 AC 121 ms
40,392 KB
testcase_15 AC 139 ms
41,700 KB
testcase_16 AC 142 ms
41,316 KB
testcase_17 AC 123 ms
41,216 KB
testcase_18 AC 121 ms
41,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
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();
			String S = scan.next();
			ArrayList<Node> list = new ArrayList<>();
			
			for(int j=0; j<S.length(); j++) {
				if(S.charAt(j) == '(') {
					int count = 0;
					for(int i=j; i<S.length(); i++) {
						if(S.charAt(i) == '(') {
							count++;
						} else if(S.charAt(i) == ')') {
							count--;
							if(count == 0) {
								list.add(new Node(j+1, i+1));
								break;
							}
						}
					}
				}
			}
			
			for(Node now : list) {
				if(now.first == K) {
					System.out.println(now.end);
					break;
				} else if(now.end == K) {
					System.out.println(now.first);
					break;
				}
			}
		}
	}
}

class Node {
	int first, end;
	Node(int f, int e) {
		first = f;
		end = e;
	}
}
0