結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー 👑 KazunKazun
提出日時 2020-12-01 23:01:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 91 ms / 2,000 ms
コード長 564 bytes
コンパイル時間 569 ms
コンパイル使用メモリ 82,316 KB
実行使用メモリ 91,760 KB
最終ジャッジ日時 2024-06-12 12:16:44
合計ジャッジ時間 33,944 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
61,484 KB
testcase_01 AC 48 ms
62,416 KB
testcase_02 AC 39 ms
54,044 KB
testcase_03 AC 48 ms
63,116 KB
testcase_04 AC 91 ms
91,556 KB
testcase_05 AC 61 ms
72,516 KB
testcase_06 AC 47 ms
61,156 KB
testcase_07 AC 83 ms
89,780 KB
testcase_08 AC 53 ms
64,620 KB
testcase_09 AC 79 ms
88,556 KB
testcase_10 AC 59 ms
73,832 KB
testcase_11 AC 82 ms
89,008 KB
testcase_12 AC 80 ms
86,308 KB
testcase_13 AC 61 ms
71,280 KB
testcase_14 AC 75 ms
84,780 KB
testcase_15 AC 62 ms
72,404 KB
testcase_16 AC 77 ms
85,956 KB
testcase_17 AC 55 ms
65,144 KB
testcase_18 AC 77 ms
85,400 KB
testcase_19 AC 57 ms
68,704 KB
testcase_20 AC 49 ms
63,220 KB
testcase_21 AC 60 ms
69,612 KB
testcase_22 AC 74 ms
86,716 KB
testcase_23 AC 79 ms
89,124 KB
testcase_24 AC 83 ms
91,760 KB
testcase_25 AC 52 ms
63,080 KB
testcase_26 AC 54 ms
64,092 KB
testcase_27 AC 55 ms
64,984 KB
testcase_28 AC 52 ms
64,544 KB
testcase_29 AC 53 ms
63,648 KB
testcase_30 AC 50 ms
62,824 KB
testcase_31 AC 51 ms
62,876 KB
testcase_32 AC 54 ms
64,416 KB
testcase_33 AC 48 ms
62,904 KB
testcase_34 AC 52 ms
65,284 KB
testcase_35 AC 47 ms
64,416 KB
testcase_36 AC 48 ms
63,812 KB
testcase_37 AC 52 ms
64,096 KB
testcase_38 AC 46 ms
61,800 KB
testcase_39 AC 45 ms
61,596 KB
testcase_40 AC 47 ms
64,388 KB
testcase_41 AC 46 ms
62,800 KB
testcase_42 AC 49 ms
64,184 KB
testcase_43 AC 49 ms
63,920 KB
testcase_44 AC 50 ms
63,656 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 48 ms
53,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

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

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

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

for _ in range(N-1):
    ODP,DP=DP,[[0]*(T+1) for _ in range(K)]

    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