結果

問題 No.1741 Arrays and XOR Procedure
ユーザー kakel-sankakel-san
提出日時 2023-12-29 13:58:17
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 3,467 bytes
コンパイル時間 6,739 ms
コンパイル使用メモリ 167,000 KB
実行使用メモリ 185,176 KB
最終ジャッジ日時 2024-09-27 16:05:23
合計ジャッジ時間 12,646 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
29,952 KB
testcase_01 AC 49 ms
30,192 KB
testcase_02 AC 48 ms
30,080 KB
testcase_03 AC 131 ms
48,512 KB
testcase_04 AC 51 ms
30,080 KB
testcase_05 AC 122 ms
44,800 KB
testcase_06 AC 128 ms
46,080 KB
testcase_07 AC 128 ms
45,952 KB
testcase_08 AC 127 ms
45,184 KB
testcase_09 AC 123 ms
44,032 KB
testcase_10 AC 124 ms
44,800 KB
testcase_11 AC 111 ms
42,112 KB
testcase_12 AC 109 ms
41,484 KB
testcase_13 AC 127 ms
43,904 KB
testcase_14 AC 105 ms
40,320 KB
testcase_15 AC 120 ms
43,508 KB
testcase_16 AC 59 ms
30,720 KB
testcase_17 AC 89 ms
35,712 KB
testcase_18 AC 110 ms
41,216 KB
testcase_19 AC 57 ms
30,592 KB
testcase_20 AC 130 ms
45,568 KB
testcase_21 AC 117 ms
42,624 KB
testcase_22 AC 112 ms
41,856 KB
testcase_23 AC 83 ms
35,072 KB
testcase_24 AC 70 ms
32,512 KB
testcase_25 AC 130 ms
45,440 KB
testcase_26 AC 92 ms
37,120 KB
testcase_27 AC 55 ms
30,592 KB
testcase_28 AC 111 ms
42,496 KB
testcase_29 AC 121 ms
43,648 KB
testcase_30 AC 113 ms
42,496 KB
testcase_31 AC 57 ms
31,104 KB
testcase_32 AC 95 ms
37,376 KB
testcase_33 AC 97 ms
38,272 KB
testcase_34 AC 79 ms
34,304 KB
testcase_35 AC 52 ms
30,336 KB
testcase_36 AC 73 ms
32,640 KB
testcase_37 AC 90 ms
37,360 KB
testcase_38 AC 129 ms
44,848 KB
testcase_39 AC 88 ms
36,096 KB
testcase_40 AC 51 ms
30,592 KB
testcase_41 AC 75 ms
33,792 KB
testcase_42 AC 55 ms
30,464 KB
testcase_43 AC 50 ms
185,176 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (81 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 static System.Console;
using System.Linq;
using System.Collections.Generic;

class Program
{
    static int NN => int.Parse(ReadLine());
    static int[] NList => ReadLine().Split().Select(int.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var n = NN;
        var b = NList;
        var ncr = new NCR(n - 1, 2);
        var dp0 = 1L;
        var dp1 = 0L;
        var mod = 998_244_353;
        for (var i = 0; i < b.Length; ++i)
        {
            var ev = NcrIsEven(n - 1, i);
            var ndp0 = 0L;
            var ndp1 = 0L;
            if (b[i] != 1)
            {
                ndp0 = (ndp0 + dp0) % mod;
                ndp1 = (ndp1 + dp1) % mod;
            }
            if (b[i] != 0)
            {
                if (ev)
                {
                    ndp0 = (ndp0 + dp0) % mod;
                    ndp1 = (ndp1 + dp1) % mod;
                }
                else
                {
                    ndp0 = (ndp0 + dp1) % mod;
                    ndp1 = (ndp1 + dp0) % mod;
                }
            }
            dp0 = ndp0;
            dp1 = ndp1;
        }
        WriteLine(dp1);
    }
    static bool NcrIsEven(int n, int r)
    {
        return DCount(n) - DCount(r) - DCount(n - r) > 0;
    }
    static int DCount(int n)
    {
        var ans = 0;
        for (var i = 2; i <= n; i <<= 1)
        {
            ans += n / i;
        }
        return ans;
    }
    class NCR
    {
        int[] facts;
        int[] revFacts;
        int mod;
        public NCR(int n, int mod)
        {
            facts = new int[n + 1];
            revFacts = new int[n + 1];
            this.mod = mod;
            facts[0] = 1;
            var tmp = 1L;
            for (var i = 1; i <= n; ++i)
            {
                tmp = tmp * i % mod;
                facts[i] = (int)tmp;
            }
            tmp = Exp(facts[n], mod - 2);
            revFacts[n] = (int)tmp;
            for (var i = n; i > 1; --i)
            {
                tmp = tmp * i % mod;
                revFacts[i - 1] = (int)tmp;
            }
            revFacts[0] = 1;
        }
        public long Exp(long n, long k)
        {
            n = n % mod;
            if (k == 0) return 1;
            if (k == 1) return n;
            var half = Exp(n, k / 2);
            var result = half * half % mod;
            return ((k % 2) == 0) ? result : (result * n % mod);
        }
        public long Calc(int n, int r)
        {
            return (long)facts[n] * revFacts[r] % mod * revFacts[n - r] % mod;
        }
        /// <summary>nが大きくrが小さい場合の計算</summary>
        public long Calc2(int n, int r)
        {
            var tmp = 1L;
            for (var i = 0; i < r; ++i)
            {
                tmp = tmp * (n - i) % mod;
            }
            return tmp * revFacts[r] % mod;
        }
        public long NPR(int n, int r)
        {
            return (long)facts[n] * revFacts[r] % mod;
        }
        public long Fact(int n)
        {
            return facts[n];
        }
        public long RevFact(int n)
        {
            return revFacts[n];
        }
        public long Inverse(int n)
        {
            return (long)revFacts[n] * facts[n - 1] % mod;
        }
    }
}
0