結果

問題 No.1927 AB-CD
ユーザー tentententen
提出日時 2024-07-30 08:49:32
言語 Java21
(openjdk 21)
結果
AC  
実行時間 138 ms / 2,000 ms
コード長 1,904 bytes
コンパイル時間 2,162 ms
コンパイル使用メモリ 78,492 KB
実行使用メモリ 54,400 KB
最終ジャッジ日時 2024-07-30 08:49:39
合計ジャッジ時間 6,399 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
50,072 KB
testcase_01 AC 48 ms
50,364 KB
testcase_02 AC 47 ms
50,412 KB
testcase_03 AC 46 ms
50,296 KB
testcase_04 AC 119 ms
52,104 KB
testcase_05 AC 135 ms
51,992 KB
testcase_06 AC 109 ms
52,076 KB
testcase_07 AC 116 ms
52,080 KB
testcase_08 AC 57 ms
50,428 KB
testcase_09 AC 119 ms
52,104 KB
testcase_10 AC 112 ms
52,228 KB
testcase_11 AC 118 ms
51,992 KB
testcase_12 AC 83 ms
51,736 KB
testcase_13 AC 94 ms
51,964 KB
testcase_14 AC 53 ms
50,344 KB
testcase_15 AC 69 ms
50,920 KB
testcase_16 AC 120 ms
52,048 KB
testcase_17 AC 106 ms
52,220 KB
testcase_18 AC 111 ms
51,964 KB
testcase_19 AC 116 ms
51,916 KB
testcase_20 AC 126 ms
52,264 KB
testcase_21 AC 109 ms
52,096 KB
testcase_22 AC 75 ms
51,464 KB
testcase_23 AC 132 ms
53,912 KB
testcase_24 AC 138 ms
54,400 KB
testcase_25 AC 127 ms
54,056 KB
testcase_26 AC 131 ms
54,072 KB
testcase_27 AC 47 ms
50,248 KB
testcase_28 AC 47 ms
50,036 KB
testcase_29 AC 48 ms
50,388 KB
権限があれば一括ダウンロードができます

ソースコード

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();
        int ab = 0;
        int cd = 0;
        for (char c : sc.next().toCharArray()) {
            if (c == 'A' || c == 'B') {
                ab++;
            } else {
                cd++;
            }
        }
        long ans = fact(n) * pow(fact(ab), MOD - 2) % MOD * pow(fact(cd), MOD - 2) % MOD;
        System.out.println(ans);
    }
    
    static long fact(int x) {
        long ans = 1;
        for (int i = 2; i <= x; i++) {
            ans *= i;
            ans %= MOD;
        }
        return 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;
        }
    }
}
class Scanner {
    BufferedReader br;
    StringTokenizer st = new StringTokenizer("");
    StringBuilder sb = new StringBuilder();
    
    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