結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー WizistWizist
提出日時 2020-12-02 05:00:59
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 659 bytes
コンパイル時間 375 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 251,908 KB
最終ジャッジ日時 2024-06-12 13:54:04
合計ジャッジ時間 39,224 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
52,668 KB
testcase_01 AC 32 ms
52,392 KB
testcase_02 AC 53 ms
84,068 KB
testcase_03 AC 214 ms
251,908 KB
testcase_04 WA -
testcase_05 AC 124 ms
92,536 KB
testcase_06 AC 68 ms
92,500 KB
testcase_07 WA -
testcase_08 AC 100 ms
117,428 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 142 ms
92,916 KB
testcase_13 AC 120 ms
92,532 KB
testcase_14 AC 142 ms
92,652 KB
testcase_15 WA -
testcase_16 AC 150 ms
92,592 KB
testcase_17 AC 101 ms
103,108 KB
testcase_18 AC 143 ms
93,060 KB
testcase_19 AC 111 ms
92,680 KB
testcase_20 AC 75 ms
92,292 KB
testcase_21 AC 124 ms
102,764 KB
testcase_22 WA -
testcase_23 AC 152 ms
92,448 KB
testcase_24 WA -
testcase_25 AC 137 ms
155,564 KB
testcase_26 AC 109 ms
117,452 KB
testcase_27 AC 101 ms
117,528 KB
testcase_28 AC 96 ms
117,532 KB
testcase_29 WA -
testcase_30 AC 106 ms
140,720 KB
testcase_31 AC 143 ms
169,868 KB
testcase_32 AC 109 ms
117,456 KB
testcase_33 AC 124 ms
155,272 KB
testcase_34 AC 107 ms
117,596 KB
testcase_35 AC 113 ms
140,720 KB
testcase_36 AC 124 ms
155,500 KB
testcase_37 AC 111 ms
140,864 KB
testcase_38 AC 39 ms
62,940 KB
testcase_39 AC 54 ms
83,448 KB
testcase_40 AC 117 ms
140,576 KB
testcase_41 AC 161 ms
184,920 KB
testcase_42 AC 121 ms
140,976 KB
testcase_43 AC 120 ms
140,708 KB
testcase_44 AC 136 ms
155,340 KB
04_evil_A_01 MLE -
04_evil_A_02 MLE -
04_evil_A_03 MLE -
04_evil_A_04 MLE -
04_evil_A_05 MLE -
04_evil_A_06 MLE -
04_evil_A_07 MLE -
04_evil_A_08 MLE -
04_evil_A_09 MLE -
04_evil_A_10 MLE -
05_evil_B_01 MLE -
05_evil_B_02 MLE -
05_evil_B_03 MLE -
05_evil_B_04 MLE -
05_evil_B_05 MLE -
05_evil_B_06 MLE -
05_evil_B_07 MLE -
05_evil_B_08 MLE -
05_evil_B_09 MLE -
05_evil_B_10 MLE -
06_evil_C_01 MLE -
06_evil_C_02 MLE -
06_evil_C_03 MLE -
06_evil_C_04 MLE -
06_evil_C_05 MLE -
06_evil_C_06 MLE -
06_evil_C_07 MLE -
06_evil_C_08 MLE -
06_evil_C_09 MLE -
06_evil_C_10 AC 38 ms
52,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
#
# No.1304 あなたは基本が何か知っていますか?私は知っています.
#
import sys, os, math

def read_ints(): return list(map(int, input().split()))

MOD = 998244353

n, k, x, y = read_ints()
a = read_ints()

m, mx = 1, max(a)
while m <= mx: m <<= 1

c = [[0] * m for _ in range(m)]; s = [0] * m
c[0][0] = s[0] = 1

for _ in range(n):
	d = [[0] * m for _ in range(m)]
	z = [0] * m
	for u in a:
		for i in range(m):
			d[i ^ u][u] = (d[i ^ u][u] + s[i] - c[i][u] + MOD) % MOD
			z[i ^ u] += d[i ^ u][u]
	c = d; s = z

ans = 0
for i in range(x, min(y + 1, m)):
	for u in a:
		ans = (ans + c[i][u]) % MOD

print(ans)
0