結果

問題 No.22 括弧の対応
ユーザー tentententen
提出日時 2022-09-12 11:00:39
言語 Java21
(openjdk 21)
結果
AC  
実行時間 66 ms / 5,000 ms
コード長 1,515 bytes
コンパイル時間 3,151 ms
コンパイル使用メモリ 81,144 KB
実行使用メモリ 37,328 KB
最終ジャッジ日時 2024-05-06 22:02:18
合計ジャッジ時間 4,959 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 57 ms
37,044 KB
testcase_01 AC 61 ms
36,884 KB
testcase_02 AC 63 ms
37,072 KB
testcase_03 AC 66 ms
36,908 KB
testcase_04 AC 59 ms
37,220 KB
testcase_05 AC 62 ms
37,120 KB
testcase_06 AC 65 ms
37,080 KB
testcase_07 AC 63 ms
37,212 KB
testcase_08 AC 61 ms
37,084 KB
testcase_09 AC 66 ms
37,212 KB
testcase_10 AC 62 ms
37,084 KB
testcase_11 AC 58 ms
37,308 KB
testcase_12 AC 61 ms
37,012 KB
testcase_13 AC 64 ms
37,328 KB
testcase_14 AC 58 ms
37,080 KB
testcase_15 AC 62 ms
36,744 KB
testcase_16 AC 64 ms
37,264 KB
testcase_17 AC 56 ms
37,212 KB
testcase_18 AC 58 ms
37,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int idx = sc.nextInt();
        char[] values = sc.next().toCharArray();
        ArrayDeque<Integer> stack = new ArrayDeque<>();
        for (int i = 1; i <= n; i++) {
            if (values[i - 1] == '(') {
                stack.push(i);
            } else {
                int current = stack.pop();
                if (current == idx) {
                    System.out.println(i);
                    return;
                } else if (i == idx) {
                    System.out.println(current);
                    return;
                }
            }
        }
    }
}
    
class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0