結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー KazunKazun
提出日時 2020-12-02 00:50:33
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 616 bytes
コンパイル時間 171 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 264,048 KB
最終ジャッジ日時 2024-06-12 13:37:45
合計ジャッジ時間 37,483 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 230 ms
102,336 KB
testcase_01 AC 387 ms
121,228 KB
testcase_02 AC 228 ms
102,044 KB
testcase_03 TLE -
testcase_04 AC 234 ms
102,348 KB
testcase_05 AC 228 ms
102,312 KB
testcase_06 AC 226 ms
102,208 KB
testcase_07 AC 231 ms
102,112 KB
testcase_08 AC 537 ms
139,112 KB
testcase_09 AC 230 ms
102,216 KB
testcase_10 AC 230 ms
102,264 KB
testcase_11 AC 230 ms
102,412 KB
testcase_12 AC 232 ms
102,116 KB
testcase_13 AC 230 ms
102,316 KB
testcase_14 AC 235 ms
102,324 KB
testcase_15 AC 233 ms
102,584 KB
testcase_16 AC 236 ms
102,080 KB
testcase_17 AC 397 ms
121,400 KB
testcase_18 AC 229 ms
102,388 KB
testcase_19 AC 227 ms
102,632 KB
testcase_20 AC 222 ms
102,424 KB
testcase_21 AC 398 ms
121,480 KB
testcase_22 AC 230 ms
102,268 KB
testcase_23 AC 232 ms
102,260 KB
testcase_24 AC 233 ms
102,316 KB
testcase_25 AC 1,034 ms
195,316 KB
testcase_26 AC 551 ms
138,824 KB
testcase_27 AC 547 ms
138,708 KB
testcase_28 AC 705 ms
158,444 KB
testcase_29 AC 553 ms
138,696 KB
testcase_30 AC 854 ms
175,684 KB
testcase_31 AC 1,339 ms
231,876 KB
testcase_32 AC 552 ms
138,752 KB
testcase_33 AC 1,033 ms
195,252 KB
testcase_34 AC 548 ms
138,824 KB
testcase_35 AC 855 ms
175,820 KB
testcase_36 AC 1,175 ms
212,956 KB
testcase_37 AC 864 ms
175,828 KB
testcase_38 AC 858 ms
175,488 KB
testcase_39 AC 1,484 ms
249,584 KB
testcase_40 AC 866 ms
176,068 KB
testcase_41 AC 1,509 ms
249,720 KB
testcase_42 AC 861 ms
176,112 KB
testcase_43 AC 863 ms
175,728 KB
testcase_44 AC 1,177 ms
212,900 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 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 140 ms
93,220 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=[[0]*(T+1) for _ in range(T+1)]

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 k in range(T+1):
        E=ODP[k]
        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:
    B+=sum(L[X:Y+1])
    B%=Mod
print(B)
0