結果

問題 No.2872 Depth of the Parentheses
ユーザー tentententen
提出日時 2024-09-09 10:28:22
言語 Java21
(openjdk 21)
結果
AC  
実行時間 114 ms / 2,000 ms
コード長 2,464 bytes
コンパイル時間 3,610 ms
コンパイル使用メモリ 78,816 KB
実行使用メモリ 51,612 KB
最終ジャッジ日時 2024-09-09 10:28:31
合計ジャッジ時間 6,959 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
50,136 KB
testcase_01 AC 54 ms
50,192 KB
testcase_02 AC 54 ms
50,260 KB
testcase_03 AC 55 ms
50,368 KB
testcase_04 AC 61 ms
50,236 KB
testcase_05 AC 54 ms
50,112 KB
testcase_06 AC 53 ms
50,008 KB
testcase_07 AC 111 ms
51,612 KB
testcase_08 AC 58 ms
50,152 KB
testcase_09 AC 56 ms
50,192 KB
testcase_10 AC 87 ms
51,312 KB
testcase_11 AC 85 ms
51,292 KB
testcase_12 AC 87 ms
51,408 KB
testcase_13 AC 77 ms
51,576 KB
testcase_14 AC 61 ms
49,884 KB
testcase_15 AC 55 ms
50,120 KB
testcase_16 AC 109 ms
51,572 KB
testcase_17 AC 56 ms
50,224 KB
testcase_18 AC 113 ms
51,336 KB
testcase_19 AC 59 ms
50,344 KB
testcase_20 AC 114 ms
51,428 KB
testcase_21 AC 56 ms
50,056 KB
testcase_22 AC 112 ms
51,428 KB
evil_01.txt WA -
evil_02.txt WA -
evil_03.txt WA -
evil_04.txt AC 59 ms
50,140 KB
evil_05.txt WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;
import java.util.function.*;
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();
        long face = n * pow(100, MOD - 2) % MOD;
        long back = (1 - face + MOD) % MOD;
        int k = sc.nextInt();
        long rate = pow(face, k) * pow(back, k) % MOD;
        long ans = 0;
        for (int i = 0; i < (1 << (k * 2)); i++) {
            if (getPop(i) != k) {
                continue;
            }
            int current = 0;
            int depth = 0;
            for (int j = 0; j < k * 2; j++) {
                if ((i & (1 << j)) == 0) {
                    current++;
                    depth = Math.max(depth, current);
                } else {
                    current--;
                    if (current < 0) {
                        depth = 0;
                        break;
                    }
                }
            }
            if (depth == 0 || current != 0) {
                continue;
            }
            ans += rate * depth % MOD;
            ans %= MOD;
        }
        System.out.println(ans);
    }
    
    static long pow(long x, int p) {
        if (p == 0) {
            return 1;
        } else if (p % 2 == 0) {
            return pow(x * x % MOD, p / 2);
        } else {
            return pow(x, p - 1) * x % MOD;
        }
    }
    
    static int getPop(int x) {
        int pop = 0;
        while (x > 0) {
            pop += x % 2;
            x >>= 1;
        }
        return pop;
    }
}

class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");

    public Scanner() {
        try {
            br = new BufferedReader(new InputStreamReader(System.in));
        } catch (Exception e) {
            
        }
    }
    
    public int nextInt() {
        return Integer.parseInt(next());
    }
    
    public long nextLong() {
        return Long.parseLong(next());
    }
    
    public double nextDouble() {
        return Double.parseDouble(next());
    }
    
    public String next() {
        try {
            while (!st.hasMoreTokens()) {
                st = new StringTokenizer(br.readLine());
            }
        } catch (Exception e) {
            e.printStackTrace();
        } finally {
            return st.nextToken();
        }
    }
    
}


0