結果

問題 No.1927 AB-CD
ユーザー ぷらぷら
提出日時 2022-05-06 21:26:32
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 81 ms / 2,000 ms
コード長 815 bytes
コンパイル時間 1,932 ms
コンパイル使用メモリ 200,856 KB
実行使用メモリ 50,560 KB
最終ジャッジ日時 2024-07-05 22:31:35
合計ジャッジ時間 4,762 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 60 ms
50,176 KB
testcase_01 AC 63 ms
50,176 KB
testcase_02 AC 62 ms
50,304 KB
testcase_03 AC 61 ms
50,304 KB
testcase_04 AC 81 ms
50,532 KB
testcase_05 AC 66 ms
50,432 KB
testcase_06 AC 65 ms
50,532 KB
testcase_07 AC 64 ms
50,432 KB
testcase_08 AC 61 ms
50,432 KB
testcase_09 AC 66 ms
50,432 KB
testcase_10 AC 65 ms
50,532 KB
testcase_11 AC 64 ms
50,528 KB
testcase_12 AC 62 ms
50,560 KB
testcase_13 AC 63 ms
50,560 KB
testcase_14 AC 61 ms
50,176 KB
testcase_15 AC 62 ms
50,304 KB
testcase_16 AC 66 ms
50,536 KB
testcase_17 AC 64 ms
50,560 KB
testcase_18 AC 63 ms
50,432 KB
testcase_19 AC 63 ms
50,404 KB
testcase_20 AC 69 ms
50,528 KB
testcase_21 AC 65 ms
50,528 KB
testcase_22 AC 64 ms
50,432 KB
testcase_23 AC 68 ms
50,528 KB
testcase_24 AC 67 ms
50,528 KB
testcase_25 AC 67 ms
50,532 KB
testcase_26 AC 66 ms
50,476 KB
testcase_27 AC 60 ms
50,304 KB
testcase_28 AC 65 ms
50,304 KB
testcase_29 AC 61 ms
50,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

constexpr int mod = 998244353;

long long fac[2000005], finv[2000005], inv[2000005];

void COMinit() {
    fac[0] = fac[1] = finv[0] = finv[1] = inv[1] = 1;
    for (int i = 2; i < 2000005; i++) {
        fac[i] = fac[i - 1] * i % mod;
        inv[i] = mod - inv[mod % i] * (mod / i) % mod;
        finv[i] = finv[i - 1] * inv[i] % mod;
    }
}

long long COM(int n, int k){
    if (n < k) return 0;
    if (n < 0 || k < 0) return 0;
    return fac[n] * (finv[k] * finv[n - k] % mod) % mod;
}

int main() {
    int N;
    string S;
    cin >> N >> S;
    COMinit();
    int a = 0,c = 0;
    for(int i = 0; i < N; i++) {
        if(S[i] == 'A' || S[i] == 'B') {
            a++;
        }
        else {
            c++;
        }
    }
    cout << COM(N,a) << endl;
}
0