結果

問題 No.1927 AB-CD
ユーザー tentententen
提出日時 2022-07-28 14:37:13
言語 Java21
(openjdk 21)
結果
AC  
実行時間 141 ms / 2,000 ms
コード長 1,725 bytes
コンパイル時間 3,884 ms
コンパイル使用メモリ 77,400 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-07-18 05:30:35
合計ジャッジ時間 6,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 56 ms
50,276 KB
testcase_01 AC 53 ms
50,044 KB
testcase_02 AC 53 ms
50,328 KB
testcase_03 AC 54 ms
50,360 KB
testcase_04 AC 128 ms
52,216 KB
testcase_05 AC 124 ms
52,316 KB
testcase_06 AC 114 ms
52,144 KB
testcase_07 AC 117 ms
51,788 KB
testcase_08 AC 64 ms
50,608 KB
testcase_09 AC 128 ms
52,052 KB
testcase_10 AC 111 ms
52,084 KB
testcase_11 AC 124 ms
52,264 KB
testcase_12 AC 101 ms
51,912 KB
testcase_13 AC 110 ms
51,740 KB
testcase_14 AC 60 ms
50,400 KB
testcase_15 AC 71 ms
50,972 KB
testcase_16 AC 116 ms
52,096 KB
testcase_17 AC 123 ms
51,876 KB
testcase_18 AC 121 ms
52,140 KB
testcase_19 AC 122 ms
52,108 KB
testcase_20 AC 132 ms
52,056 KB
testcase_21 AC 128 ms
52,264 KB
testcase_22 AC 89 ms
51,852 KB
testcase_23 AC 136 ms
54,552 KB
testcase_24 AC 137 ms
54,376 KB
testcase_25 AC 136 ms
54,344 KB
testcase_26 AC 141 ms
54,284 KB
testcase_27 AC 54 ms
50,388 KB
testcase_28 AC 55 ms
50,464 KB
testcase_29 AC 55 ms
50,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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;
        for (char c : sc.next().toCharArray()) {
            if (c == 'A' || c == 'B') {
                ab++;
            }
        }
        System.out.println(getComb(n, ab));
    }
    
    static long getComb(long n, long r) {
        if (n - r < r) {
            return getComb(n, n - r);
        }
        long ans = 1;
        long div = 1;
        for (int i = 1; i <= r; i++) {
            ans *= n - i + 1;
            ans %= MOD;
            div *= i;
            div %= MOD;
        }
        return ans * pow(div, MOD - 2) % MOD;
    }
    
    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 = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    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