結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
61,128 KB
testcase_01 AC 57 ms
63,668 KB
testcase_02 AC 44 ms
54,168 KB
testcase_03 AC 60 ms
65,236 KB
testcase_04 AC 100 ms
91,532 KB
testcase_05 AC 68 ms
72,892 KB
testcase_06 AC 51 ms
61,832 KB
testcase_07 AC 94 ms
89,896 KB
testcase_08 AC 60 ms
65,080 KB
testcase_09 AC 92 ms
88,748 KB
testcase_10 AC 71 ms
74,084 KB
testcase_11 AC 89 ms
89,116 KB
testcase_12 AC 82 ms
86,496 KB
testcase_13 AC 65 ms
72,472 KB
testcase_14 AC 68 ms
73,780 KB
testcase_15 AC 67 ms
74,056 KB
testcase_16 AC 72 ms
74,328 KB
testcase_17 AC 61 ms
66,988 KB
testcase_18 AC 71 ms
74,324 KB
testcase_19 AC 64 ms
70,204 KB
testcase_20 AC 52 ms
63,056 KB
testcase_21 AC 70 ms
70,028 KB
testcase_22 AC 86 ms
86,784 KB
testcase_23 AC 92 ms
89,212 KB
testcase_24 AC 98 ms
91,656 KB
testcase_25 AC 58 ms
65,048 KB
testcase_26 AC 61 ms
64,812 KB
testcase_27 AC 61 ms
65,224 KB
testcase_28 AC 62 ms
64,552 KB
testcase_29 AC 60 ms
64,868 KB
testcase_30 AC 57 ms
64,624 KB
testcase_31 AC 55 ms
63,588 KB
testcase_32 AC 61 ms
65,680 KB
testcase_33 AC 57 ms
64,920 KB
testcase_34 AC 61 ms
65,280 KB
testcase_35 AC 56 ms
64,648 KB
testcase_36 AC 57 ms
64,452 KB
testcase_37 AC 60 ms
64,528 KB
testcase_38 AC 50 ms
61,480 KB
testcase_39 AC 51 ms
62,348 KB
testcase_40 AC 58 ms
64,384 KB
testcase_41 AC 59 ms
64,400 KB
testcase_42 AC 60 ms
65,056 KB
testcase_43 AC 60 ms
64,736 KB
testcase_44 AC 60 ms
64,680 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 52 ms
53,964 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy

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

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

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

for _ in range(N-1):

    for i in range(K):
        E=ODP[i]
        F=DP[i]
        for x in range(T+1):
            E[x],F[x]=F[x],0

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