結果

問題 No.22 括弧の対応
ユーザー jp_stejp_ste
提出日時 2016-02-18 22:06:48
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 815 bytes
コンパイル時間 2,536 ms
コンパイル使用メモリ 78,152 KB
実行使用メモリ 54,496 KB
最終ジャッジ日時 2024-09-22 12:04:12
合計ジャッジ時間 6,081 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
54,188 KB
testcase_01 AC 132 ms
54,096 KB
testcase_02 AC 129 ms
53,840 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 AC 130 ms
54,184 KB
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

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<>();
			int count = 0;
			for(int i=0; i<S.length(); i++) {
				if(S.charAt(i) == '(') {
					list.add(new Node(i+1));
					count++;
				} else if(S.charAt(i) == ')') {
					count--;
					list.get(count).end = i+1;
				}
			}
			
			for(int i=0; i<list.size(); i++) {
				if(list.get(i).first == K) {
					System.out.println(list.get(i).end);
				} else if(list.get(i).end == K) {
					System.out.println(list.get(i).first);
				}
			}
		}
	}
}

class Node {
	int first;
	int end;
	Node(int f) {
		first = f;
		end = -1;
	}
}
0