結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー 👑 KazunKazun
提出日時 2020-12-02 00:52:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 2,000 ms
コード長 615 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,984 KB
実行使用メモリ 103,668 KB
最終ジャッジ日時 2024-06-12 13:37:06
合計ジャッジ時間 35,879 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
63,096 KB
testcase_01 AC 54 ms
67,264 KB
testcase_02 AC 46 ms
61,576 KB
testcase_03 AC 59 ms
71,620 KB
testcase_04 AC 249 ms
103,668 KB
testcase_05 AC 143 ms
87,312 KB
testcase_06 AC 52 ms
65,836 KB
testcase_07 AC 219 ms
98,948 KB
testcase_08 AC 72 ms
76,776 KB
testcase_09 AC 203 ms
96,468 KB
testcase_10 AC 172 ms
91,732 KB
testcase_11 AC 210 ms
96,880 KB
testcase_12 AC 182 ms
92,320 KB
testcase_13 AC 138 ms
87,116 KB
testcase_14 AC 168 ms
90,008 KB
testcase_15 AC 156 ms
89,796 KB
testcase_16 AC 181 ms
91,928 KB
testcase_17 AC 76 ms
77,556 KB
testcase_18 AC 175 ms
91,744 KB
testcase_19 AC 119 ms
84,692 KB
testcase_20 AC 64 ms
77,336 KB
testcase_21 AC 112 ms
81,272 KB
testcase_22 AC 185 ms
93,712 KB
testcase_23 AC 207 ms
97,128 KB
testcase_24 AC 248 ms
102,700 KB
testcase_25 AC 59 ms
71,856 KB
testcase_26 AC 71 ms
77,052 KB
testcase_27 AC 77 ms
77,104 KB
testcase_28 AC 67 ms
76,268 KB
testcase_29 AC 67 ms
76,568 KB
testcase_30 AC 52 ms
66,428 KB
testcase_31 AC 56 ms
71,000 KB
testcase_32 AC 77 ms
77,268 KB
testcase_33 AC 59 ms
72,236 KB
testcase_34 AC 78 ms
76,848 KB
testcase_35 AC 63 ms
73,308 KB
testcase_36 AC 58 ms
72,180 KB
testcase_37 AC 60 ms
71,656 KB
testcase_38 AC 52 ms
65,632 KB
testcase_39 AC 52 ms
65,340 KB
testcase_40 AC 59 ms
74,044 KB
testcase_41 AC 57 ms
69,064 KB
testcase_42 AC 64 ms
74,132 KB
testcase_43 AC 60 ms
72,504 KB
testcase_44 AC 58 ms
71,380 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 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 47 ms
55,396 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

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

T=1023
Flag=set()
for a in A:
    Flag.add(a)

Z={a:[0]*(T+1) for a in Flag}

DP=deepcopy(Z)

for a in range(T+1):
    if a in Flag:
        DP[a][a]=1

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

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

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

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