結果

問題 No.2031 Colored Brackets
ユーザー tentententen
提出日時 2023-06-30 13:29:50
言語 Java21
(openjdk 21)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 2,251 bytes
コンパイル時間 2,824 ms
コンパイル使用メモリ 94,272 KB
実行使用メモリ 52,508 KB
最終ジャッジ日時 2024-07-07 01:33:29
合計ジャッジ時間 6,228 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
50,576 KB
testcase_01 AC 47 ms
50,524 KB
testcase_02 AC 46 ms
50,408 KB
testcase_03 AC 47 ms
50,220 KB
testcase_04 AC 70 ms
50,688 KB
testcase_05 AC 56 ms
50,260 KB
testcase_06 AC 58 ms
50,892 KB
testcase_07 AC 47 ms
50,460 KB
testcase_08 AC 78 ms
51,168 KB
testcase_09 AC 82 ms
51,640 KB
testcase_10 AC 89 ms
51,876 KB
testcase_11 AC 83 ms
51,932 KB
testcase_12 AC 86 ms
52,300 KB
testcase_13 AC 77 ms
51,200 KB
testcase_14 AC 92 ms
52,508 KB
testcase_15 AC 80 ms
52,324 KB
testcase_16 AC 82 ms
52,360 KB
testcase_17 AC 87 ms
52,400 KB
testcase_18 AC 73 ms
51,540 KB
testcase_19 AC 74 ms
51,228 KB
testcase_20 AC 70 ms
50,968 KB
testcase_21 AC 70 ms
50,908 KB
testcase_22 AC 71 ms
51,256 KB
testcase_23 AC 79 ms
51,536 KB
testcase_24 AC 46 ms
50,504 KB
testcase_25 AC 47 ms
50,496 KB
testcase_26 AC 47 ms
50,092 KB
testcase_27 AC 48 ms
50,316 KB
testcase_28 AC 48 ms
50,216 KB
testcase_29 AC 47 ms
50,164 KB
testcase_30 AC 46 ms
50,588 KB
testcase_31 AC 51 ms
50,204 KB
testcase_32 AC 48 ms
50,520 KB
testcase_33 AC 48 ms
50,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {
    static final int MOD = 998244353;
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        char[] inputs = sc.next().toCharArray();
        int size = n / 2;
        int[] dp = new int[size + 1];
        dp[0] = 1;
        int current = 0;
        for (int i = 1; i <= n; i++) {
            if (inputs[i - 1] == '(') {
                current++;
                for (int j = current; j >= 1; j--) {
                    dp[j] += dp[j - 1];
                    dp[j] %= MOD;
                }
            } else {
                current--;
                for (int j = 0; j <= current; j++) {
                    dp[j] += dp[j + 1];
                    dp[j] %= MOD;
                }
                for (int j = current + 1; j <= size; j++) {
                    dp[j] = 0;
                }
            }
        }
        System.out.println(dp[0]);
    }
}
class Utilities {
    static String arrayToLineString(Object[] arr) {
        return Arrays.stream(arr).map(x -> x.toString()).collect(Collectors.joining("\n"));
    }
    
    static String arrayToLineString(int[] arr) {
        return String.join("\n", Arrays.stream(arr).mapToObj(String::valueOf).toArray(String[]::new));
    }
}
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 int[] nextIntArray() throws Exception {
        return Stream.of(br.readLine().split(" ")).mapToInt(Integer::parseInt).toArray();
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
    
}
0