結果

問題 No.1927 AB-CD
ユーザー kokatsukokatsu
提出日時 2022-05-07 20:28:09
言語 D
(dmd 2.106.1)
結果
TLE  
実行時間 -
コード長 333 bytes
コンパイル時間 1,974 ms
コンパイル使用メモリ 205,600 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-22 15:10:16
合計ジャッジ時間 31,933 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 AC 1 ms
6,940 KB
testcase_02 AC 1 ms
6,944 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 1,611 ms
6,944 KB
testcase_05 AC 1,520 ms
6,944 KB
testcase_06 AC 1,481 ms
6,940 KB
testcase_07 AC 1,348 ms
6,944 KB
testcase_08 AC 139 ms
6,940 KB
testcase_09 AC 1,599 ms
6,940 KB
testcase_10 AC 1,206 ms
6,944 KB
testcase_11 AC 1,420 ms
6,944 KB
testcase_12 AC 637 ms
6,944 KB
testcase_13 AC 753 ms
6,940 KB
testcase_14 AC 83 ms
6,940 KB
testcase_15 AC 333 ms
6,944 KB
testcase_16 AC 1,462 ms
6,940 KB
testcase_17 AC 1,066 ms
6,944 KB
testcase_18 AC 1,165 ms
6,944 KB
testcase_19 AC 1,277 ms
6,944 KB
testcase_20 AC 1,797 ms
6,944 KB
testcase_21 AC 1,294 ms
6,940 KB
testcase_22 AC 547 ms
6,940 KB
testcase_23 AC 1,870 ms
6,940 KB
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 AC 1 ms
6,944 KB
testcase_28 AC 1 ms
6,940 KB
testcase_29 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import std;

void main() {
    ulong N;
    readf("%d\n", N);

    auto S = readln.chomp;

    ulong M = 998_244_353;

    ulong cntAB = S.count!(s => (s == 'A' || s == 'B'));

    ulong res = 1;
    foreach (i; 0 .. cntAB) {
        res = (res * (N - i)) % M;
        res = (res * powmod(i+1, M-2, M)) % M;
    }

    res.writeln;
}
0