結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー kakel-sankakel-san
提出日時 2024-09-25 20:49:23
言語 C#
(.NET 8.0.203)
結果
AC  
実行時間 121 ms / 2,000 ms
コード長 1,629 bytes
コンパイル時間 8,042 ms
コンパイル使用メモリ 167,356 KB
実行使用メモリ 47,488 KB
最終ジャッジ日時 2024-09-25 20:49:41
合計ジャッジ時間 16,930 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 62 ms
30,676 KB
testcase_01 AC 64 ms
30,976 KB
testcase_02 AC 63 ms
30,336 KB
testcase_03 AC 66 ms
31,872 KB
testcase_04 AC 121 ms
47,488 KB
testcase_05 AC 86 ms
38,272 KB
testcase_06 AC 64 ms
30,848 KB
testcase_07 AC 105 ms
44,784 KB
testcase_08 AC 68 ms
32,000 KB
testcase_09 AC 102 ms
43,520 KB
testcase_10 AC 87 ms
40,320 KB
testcase_11 AC 97 ms
43,896 KB
testcase_12 AC 95 ms
41,216 KB
testcase_13 AC 88 ms
37,888 KB
testcase_14 AC 92 ms
39,680 KB
testcase_15 AC 86 ms
39,040 KB
testcase_16 AC 95 ms
40,916 KB
testcase_17 AC 69 ms
32,512 KB
testcase_18 AC 92 ms
40,064 KB
testcase_19 AC 78 ms
35,840 KB
testcase_20 AC 65 ms
31,600 KB
testcase_21 AC 78 ms
35,328 KB
testcase_22 AC 97 ms
41,984 KB
testcase_23 AC 105 ms
43,708 KB
testcase_24 AC 115 ms
47,360 KB
testcase_25 AC 66 ms
31,360 KB
testcase_26 AC 67 ms
31,872 KB
testcase_27 AC 69 ms
32,384 KB
testcase_28 AC 67 ms
31,744 KB
testcase_29 AC 66 ms
31,600 KB
testcase_30 AC 65 ms
31,104 KB
testcase_31 AC 65 ms
31,472 KB
testcase_32 AC 69 ms
32,496 KB
testcase_33 AC 65 ms
31,488 KB
testcase_34 AC 69 ms
32,384 KB
testcase_35 AC 67 ms
31,720 KB
testcase_36 AC 67 ms
31,488 KB
testcase_37 AC 66 ms
31,360 KB
testcase_38 AC 62 ms
30,576 KB
testcase_39 AC 66 ms
31,360 KB
testcase_40 AC 66 ms
31,488 KB
testcase_41 AC 66 ms
31,488 KB
testcase_42 AC 66 ms
31,612 KB
testcase_43 AC 66 ms
31,488 KB
testcase_44 AC 68 ms
31,488 KB
04_evil_A_01 WA -
04_evil_A_02 WA -
04_evil_A_03 WA -
04_evil_A_04 WA -
04_evil_A_05 WA -
04_evil_A_06 WA -
04_evil_A_07 WA -
04_evil_A_08 WA -
04_evil_A_09 WA -
04_evil_A_10 WA -
05_evil_B_01 WA -
05_evil_B_02 WA -
05_evil_B_03 WA -
05_evil_B_04 WA -
05_evil_B_05 WA -
05_evil_B_06 WA -
05_evil_B_07 WA -
05_evil_B_08 WA -
05_evil_B_09 WA -
05_evil_B_10 WA -
06_evil_C_01 WA -
06_evil_C_02 WA -
06_evil_C_03 WA -
06_evil_C_04 WA -
06_evil_C_05 WA -
06_evil_C_06 WA -
06_evil_C_07 WA -
06_evil_C_08 WA -
06_evil_C_09 WA -
06_evil_C_10 AC 61 ms
184,344 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.csproj を復元しました (93 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 long[] NList => ReadLine().Split().Select(long.Parse).ToArray();
    public static void Main()
    {
        Solve();
    }
    static void Solve()
    {
        var c = NList;
        var (n, k, x, y) = (c[0], (int)c[1], (int)c[2], (int)c[3]);
        var a = NList;
        if (n > 30 || y >= 1024 || a.Max() >= 1024)
        {
            WriteLine(0);
            return;
        }
        WriteLine(Basic((int)n, k, x, y, a.Select(ai => (int)ai).ToArray()));
    }
    static long Basic(int n, int k, int x, int y, int[] a)
    {
        var m = 1024;
        var dp = new long[k][];
        for (var i = 0; i < k; ++i)
        {
            dp[i] = new long[m];
            ++dp[i][a[i]];
        }
        var mod = 998_244_353;
        for (var i = 1; i < n; ++i)
        {
            var sum = new long[m];
            for (var j = 0; j < k; ++j) for (var v = 0; v < m; ++v) sum[v] = (sum[v] + dp[j][v]) % mod;
            var ndp = new long[k][];
            for (var j = 0; j < k; ++j)
            {
                ndp[j] = new long[m];
                for (var v = 0; v < m; ++v)
                {
                    ndp[j][v ^ a[j]] = (ndp[j][v ^ a[j]] + sum[v] - dp[j][v]) % mod;
                }
            }
            dp = ndp;
        }
        var ans = 0L;
        for (var j = 0; j < k; ++j) for (var v = x; v <= y; ++v) ans = (ans + dp[j][v]) % mod;
        return ans;
    }
}
0