結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー 👑 KazunKazun
提出日時 2020-12-01 23:56:39
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 627 bytes
コンパイル時間 430 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 264,396 KB
最終ジャッジ日時 2024-06-12 13:30:47
合計ジャッジ時間 31,871 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 218 ms
102,756 KB
testcase_01 AC 389 ms
121,264 KB
testcase_02 AC 221 ms
102,204 KB
testcase_03 TLE -
testcase_04 AC 217 ms
102,580 KB
testcase_05 AC 220 ms
102,388 KB
testcase_06 AC 228 ms
102,212 KB
testcase_07 AC 221 ms
102,280 KB
testcase_08 AC 529 ms
139,008 KB
testcase_09 AC 230 ms
102,652 KB
testcase_10 AC 224 ms
102,380 KB
testcase_11 AC 224 ms
102,544 KB
testcase_12 AC 223 ms
102,448 KB
testcase_13 AC 222 ms
102,284 KB
testcase_14 AC 227 ms
102,352 KB
testcase_15 AC 224 ms
102,292 KB
testcase_16 AC 227 ms
102,552 KB
testcase_17 AC 381 ms
121,344 KB
testcase_18 AC 223 ms
102,332 KB
testcase_19 AC 219 ms
102,392 KB
testcase_20 AC 224 ms
102,500 KB
testcase_21 AC 389 ms
121,472 KB
testcase_22 AC 222 ms
102,816 KB
testcase_23 AC 225 ms
102,912 KB
testcase_24 AC 222 ms
102,412 KB
testcase_25 AC 1,013 ms
195,072 KB
testcase_26 AC 529 ms
138,632 KB
testcase_27 AC 543 ms
138,900 KB
testcase_28 AC 687 ms
158,564 KB
testcase_29 AC 543 ms
138,980 KB
testcase_30 AC 833 ms
175,676 KB
testcase_31 AC 1,341 ms
231,848 KB
testcase_32 AC 545 ms
138,752 KB
testcase_33 AC 992 ms
195,300 KB
testcase_34 AC 542 ms
138,776 KB
testcase_35 AC 840 ms
175,700 KB
testcase_36 AC 1,136 ms
212,424 KB
testcase_37 AC 836 ms
175,820 KB
testcase_38 AC 843 ms
175,840 KB
testcase_39 AC 1,459 ms
249,856 KB
testcase_40 AC 848 ms
175,724 KB
testcase_41 AC 1,463 ms
250,560 KB
testcase_42 AC 851 ms
175,872 KB
testcase_43 AC 850 ms
175,836 KB
testcase_44 AC 1,205 ms
212,720 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 136 ms
93,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

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

Count=[0]*(T+1)
for a in A:
    Count[a]+=1

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

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

for l 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 m in range(T+1):
        E=DP[m]
        F=ODP[m]
        for x in range(T+1):
            E[x]=(S[x^m]*Count[m]-F[x^m])%Mod

B=0
for i in range(T+1):
    B+=sum(DP[i][X:Y+1])
print(B)
0