結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー さかぽんさかぽん
提出日時 2021-02-06 16:13:07
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 1,019 bytes
コンパイル時間 1,041 ms
コンパイル使用メモリ 114,216 KB
実行使用メモリ 29,440 KB
最終ジャッジ日時 2024-06-12 17:23:04
合計ジャッジ時間 6,165 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
27,432 KB
testcase_01 WA -
testcase_02 AC 30 ms
23,216 KB
testcase_03 WA -
testcase_04 AC 37 ms
25,420 KB
testcase_05 AC 37 ms
25,900 KB
testcase_06 AC 32 ms
27,192 KB
testcase_07 AC 35 ms
25,584 KB
testcase_08 WA -
testcase_09 AC 36 ms
27,876 KB
testcase_10 AC 34 ms
23,860 KB
testcase_11 AC 37 ms
25,780 KB
testcase_12 AC 36 ms
27,900 KB
testcase_13 AC 34 ms
25,460 KB
testcase_14 AC 34 ms
25,908 KB
testcase_15 AC 34 ms
25,580 KB
testcase_16 AC 34 ms
27,904 KB
testcase_17 WA -
testcase_18 AC 35 ms
25,708 KB
testcase_19 AC 35 ms
25,324 KB
testcase_20 AC 29 ms
27,304 KB
testcase_21 WA -
testcase_22 AC 36 ms
23,864 KB
testcase_23 AC 35 ms
27,524 KB
testcase_24 AC 37 ms
27,660 KB
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 AC 31 ms
23,212 KB
testcase_31 AC 30 ms
25,260 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 AC 31 ms
27,484 KB
testcase_39 AC 28 ms
25,328 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
04_evil_A_01 RE -
04_evil_A_02 RE -
04_evil_A_03 RE -
04_evil_A_04 RE -
04_evil_A_05 RE -
04_evil_A_06 RE -
04_evil_A_07 RE -
04_evil_A_08 RE -
04_evil_A_09 RE -
04_evil_A_10 RE -
05_evil_B_01 RE -
05_evil_B_02 RE -
05_evil_B_03 RE -
05_evil_B_04 RE -
05_evil_B_05 RE -
05_evil_B_06 RE -
05_evil_B_07 RE -
05_evil_B_08 RE -
05_evil_B_09 RE -
05_evil_B_10 RE -
06_evil_C_01 RE -
06_evil_C_02 RE -
06_evil_C_03 RE -
06_evil_C_04 RE -
06_evil_C_05 RE -
06_evil_C_06 RE -
06_evil_C_07 RE -
06_evil_C_08 RE -
06_evil_C_09 RE -
06_evil_C_10 AC 29 ms
25,196 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Linq;

class A
{
	const long M = 998244353;
	static int[] Read() => Array.ConvertAll(Console.ReadLine().Split(), int.Parse);
	static (int, int, int, int) Read4() { var a = Read(); return (a[0], a[1], a[2], a[3]); }
	static void Main()
	{
		var (n, k, x, y) = Read4();
		var a = Read();

		a = a.Distinct().ToArray();
		k = a.Length;

		var dp = NewArray2<long>(n + 1, 1 << 10);
		dp[0][0] = 1;
		foreach (var v in a)
			dp[1][v] = 1;
		for (int i = 0; i < k; i++)
		{
			for (int j = i + 1; j < k; j++)
			{
				dp[2][a[i] ^ a[j]] += 2;
			}
		}

		for (int i = 2; i < n; i++)
		{
			for (int j = 0; j < 1 << 10; j++)
			{
				if (dp[i][j] == 0) continue;
				foreach (var v in a)
				{
					var nv = j ^ v;
					dp[i + 1][nv] += dp[i][j] - dp[i - 1][nv];
					dp[i + 1][nv] %= M;
				}
			}
		}

		Console.WriteLine(dp[n][x..(y + 1)].Sum() % M);
	}

	static T[][] NewArray2<T>(int n1, int n2, T v = default) => Array.ConvertAll(new bool[n1], _ => Array.ConvertAll(new bool[n2], __ => v));
}
0