結果

問題 No.22 括弧の対応
ユーザー t8m8⛄️t8m8⛄️
提出日時 2015-04-03 04:12:14
言語 Java21
(openjdk 21)
結果
AC  
実行時間 169 ms / 5,000 ms
コード長 1,139 bytes
コンパイル時間 4,874 ms
コンパイル使用メモリ 79,472 KB
実行使用メモリ 41,472 KB
最終ジャッジ日時 2024-07-20 06:59:02
合計ジャッジ時間 7,760 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
41,280 KB
testcase_01 AC 130 ms
41,236 KB
testcase_02 AC 132 ms
41,152 KB
testcase_03 AC 136 ms
40,356 KB
testcase_04 AC 149 ms
41,216 KB
testcase_05 AC 154 ms
41,224 KB
testcase_06 AC 151 ms
41,328 KB
testcase_07 AC 151 ms
41,436 KB
testcase_08 AC 169 ms
41,212 KB
testcase_09 AC 155 ms
41,200 KB
testcase_10 AC 155 ms
41,356 KB
testcase_11 AC 156 ms
41,176 KB
testcase_12 AC 155 ms
41,360 KB
testcase_13 AC 159 ms
41,340 KB
testcase_14 AC 151 ms
41,392 KB
testcase_15 AC 164 ms
41,320 KB
testcase_16 AC 155 ms
40,500 KB
testcase_17 AC 141 ms
41,472 KB
testcase_18 AC 144 ms
41,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

//No.22 括弧の対応

import java.util.*;
import java.io.*;
import static java.util.Arrays.*;
import static java.lang.Math.*;

public class No22 {
    
    static final Scanner sc = new Scanner(System.in);
    static final PrintWriter out = new PrintWriter(System.out,false);

    static void solve() {
        int n = sc.nextInt();
        int k = sc.nextInt()-1;
        String s = sc.next();
        ArrayDeque<Integer> stack = new ArrayDeque<Integer>();
        for (int i=0; i<n; i++) {
            if (s.charAt(i) == '(') {
                stack.add(i);
            }else {
                int x = stack.pollLast();
                if (x == k) {
                    out.println((i+1));
                }else if (i == k) {
                    out.println((x+1));
                }
            }
        }
    }

    public static void main(String[] args) {
        long start = System.currentTimeMillis();

        solve();
        out.flush();

        long end = System.currentTimeMillis();
        //trace(end-start + "ms");
        sc.close();
    }

    static void trace(Object... o) { System.out.println(deepToString(o));}
}
0