結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー 👑 KazunKazun
提出日時 2020-12-01 23:01:22
言語 PyPy3
(7.3.15)
結果
MLE  
(最新)
AC  
(最初)
実行時間 -
コード長 560 bytes
コンパイル時間 1,703 ms
コンパイル使用メモリ 86,896 KB
実行使用メモリ 918,440 KB
最終ジャッジ日時 2023-09-03 03:42:49
合計ジャッジ時間 69,336 ms
ジャッジサーバーID
(参考情報)
judge13 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 MLE -
testcase_03 MLE -
testcase_04 MLE -
testcase_05 MLE -
testcase_06 MLE -
testcase_07 MLE -
testcase_08 AC 128 ms
82,388 KB
testcase_09 MLE -
testcase_10 MLE -
testcase_11 AC 258 ms
98,684 KB
testcase_12 MLE -
testcase_13 MLE -
testcase_14 MLE -
testcase_15 AC 208 ms
91,552 KB
testcase_16 MLE -
testcase_17 AC 129 ms
79,468 KB
testcase_18 AC 220 ms
92,184 KB
testcase_19 AC 169 ms
85,040 KB
testcase_20 AC 111 ms
77,840 KB
testcase_21 AC 163 ms
83,324 KB
testcase_22 AC 237 ms
94,500 KB
testcase_23 AC 263 ms
98,608 KB
testcase_24 AC 300 ms
103,628 KB
testcase_25 AC 111 ms
77,600 KB
testcase_26 AC 118 ms
77,944 KB
testcase_27 AC 125 ms
78,584 KB
testcase_28 AC 112 ms
77,736 KB
testcase_29 AC 115 ms
78,008 KB
testcase_30 AC 105 ms
77,576 KB
testcase_31 AC 109 ms
77,632 KB
testcase_32 AC 125 ms
78,732 KB
testcase_33 AC 110 ms
77,672 KB
testcase_34 AC 123 ms
78,592 KB
testcase_35 AC 109 ms
77,696 KB
testcase_36 AC 109 ms
77,716 KB
testcase_37 AC 112 ms
77,816 KB
testcase_38 AC 103 ms
77,452 KB
testcase_39 AC 106 ms
77,520 KB
testcase_40 AC 112 ms
77,944 KB
testcase_41 AC 107 ms
77,500 KB
testcase_42 AC 114 ms
77,952 KB
testcase_43 AC 113 ms
77,808 KB
testcase_44 AC 111 ms
77,888 KB
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 MLE -
05_evil_B_02 TLE -
05_evil_B_03 MLE -
05_evil_B_04 TLE -
05_evil_B_05 TLE -
05_evil_B_06 MLE -
05_evil_B_07 MLE -
05_evil_B_08 TLE -
05_evil_B_09 MLE -
05_evil_B_10 MLE -
06_evil_C_01 MLE -
06_evil_C_02 MLE -
06_evil_C_03 TLE -
06_evil_C_04 TLE -
06_evil_C_05 TLE -
06_evil_C_06 TLE -
06_evil_C_07 TLE -
06_evil_C_08 TLE -
06_evil_C_09 TLE -
06_evil_C_10 AC 520 ms
75,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

N,K,X,Y=map(int,input().split())
A=list(map(int,input().split()))
Mod=998244353
T=1023

Z=[[0]*(T+1) for _ in range(K)]
DP=deepcopy(Z)

for i in range(K):
    DP[i][A[i]]=1

for _ in range(N-1):
    ODP,DP=DP,deepcopy(Z)

    S=[0]*(T+1)
    for k in range(K):
        E=ODP[k]
        for x in range(T+1):
            S[x]+=E[x]
            S[x]%=Mod

    for i in range(K):
        E=DP[i]
        F=ODP[i]
        for x in range(T+1):
            E[x]=S[x^A[i]]-F[x^A[i]]

B=0
for L in DP:
    B+=sum(L[X:Y+1])
    B%=Mod
print(B)
0