結果

問題 No.1927 AB-CD
ユーザー masayamatumasayamatu
提出日時 2022-06-21 21:01:28
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 100 ms / 2,000 ms
コード長 2,036 bytes
コンパイル時間 9,781 ms
コンパイル使用メモリ 171,232 KB
実行使用メモリ 186,008 KB
最終ジャッジ日時 2024-10-14 15:49:31
合計ジャッジ時間 11,091 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 55 ms
30,336 KB
testcase_01 AC 56 ms
30,080 KB
testcase_02 AC 55 ms
30,208 KB
testcase_03 AC 55 ms
30,080 KB
testcase_04 AC 91 ms
38,760 KB
testcase_05 AC 91 ms
38,528 KB
testcase_06 AC 90 ms
38,376 KB
testcase_07 AC 89 ms
37,632 KB
testcase_08 AC 71 ms
31,872 KB
testcase_09 AC 93 ms
38,912 KB
testcase_10 AC 87 ms
37,376 KB
testcase_11 AC 91 ms
37,888 KB
testcase_12 AC 78 ms
34,176 KB
testcase_13 AC 79 ms
34,688 KB
testcase_14 AC 69 ms
31,744 KB
testcase_15 AC 74 ms
32,872 KB
testcase_16 AC 91 ms
38,272 KB
testcase_17 AC 84 ms
36,736 KB
testcase_18 AC 87 ms
37,096 KB
testcase_19 AC 87 ms
37,504 KB
testcase_20 AC 95 ms
39,548 KB
testcase_21 AC 88 ms
37,632 KB
testcase_22 AC 75 ms
33,916 KB
testcase_23 AC 97 ms
40,320 KB
testcase_24 AC 98 ms
41,088 KB
testcase_25 AC 99 ms
41,216 KB
testcase_26 AC 100 ms
41,088 KB
testcase_27 AC 56 ms
30,204 KB
testcase_28 AC 56 ms
30,208 KB
testcase_29 AC 55 ms
186,008 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (101 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Numerics;
using System.Text;
//using static CompLib.CompLib;
//using DataStructure;

namespace atcoder
{
    class Program
    {
        const int intMax = 1000000000;
        const long longMax = 2000000000000000000;
        static void Main(string[] args)
        {
            int N = int.Parse(Console.ReadLine());
            String S = Console.ReadLine();
            long mod = 998244353;
            var list = new List<int>();
            int cnt = 0;
            for (int i = 0; i < N; i++)
            {
                if (S[i] == 'A' || S[i] == 'B') cnt++;
            }
            var comb = new Comb(N, mod);
            long ans = comb.nCk(N, cnt);
            Console.WriteLine(ans);
        }
    }
    public class Comb
    {
        private long[] fact_;
        private long[] fact_inv_;
        private long[] inv_;
        private long mod = 1000000007;

        public Comb(int SIZE, long mod = 1000000007)
        {
            this.mod = mod;
            fact_ = Enumerable.Repeat((long)1, SIZE + 1).ToArray();
            fact_inv_ = Enumerable.Repeat((long)1, SIZE + 1).ToArray();
            inv_ = Enumerable.Repeat((long)1, SIZE + 1).ToArray();
            for (int i = 2; i < SIZE + 1; i++)
            {
                fact_[i] = fact_[i - 1] * i % mod;
                inv_[i] = mod - inv_[mod % i] * (mod / i) % mod;
                fact_inv_[i] = fact_inv_[i - 1] * inv_[i] % mod;
            }
        }
        public long nCk(int n, int k)
        {
            return fact_[n] * (fact_inv_[k] * fact_inv_[n - k] % mod) % mod;
        }
        public long nHk(int n, int k)
        {
            return nCk(n + k - 1, k);
        }
        public long fact(int n)
        {
            return fact_[n];
        }
        public long fact_inv(int n)
        {
            return fact_inv_[n];
        }
        public long inv(int n)
        {
            return inv_[n];
        }
    }
}
0