結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー titiatitia
提出日時 2020-12-01 06:26:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 436 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 81,840 KB
実行使用メモリ 65,752 KB
最終ジャッジ日時 2024-06-12 09:43:13
合計ジャッジ時間 7,826 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
64,408 KB
testcase_01 AC 51 ms
63,952 KB
testcase_02 AC 45 ms
59,736 KB
testcase_03 AC 54 ms
65,144 KB
testcase_04 WA -
testcase_05 AC 59 ms
62,084 KB
testcase_06 WA -
testcase_07 AC 68 ms
61,752 KB
testcase_08 AC 54 ms
63,520 KB
testcase_09 AC 66 ms
63,088 KB
testcase_10 AC 62 ms
62,664 KB
testcase_11 AC 67 ms
62,148 KB
testcase_12 AC 63 ms
61,952 KB
testcase_13 AC 58 ms
62,232 KB
testcase_14 AC 61 ms
62,072 KB
testcase_15 AC 61 ms
62,708 KB
testcase_16 AC 62 ms
62,412 KB
testcase_17 AC 55 ms
63,264 KB
testcase_18 AC 62 ms
61,628 KB
testcase_19 AC 55 ms
61,376 KB
testcase_20 AC 51 ms
61,720 KB
testcase_21 AC 55 ms
61,984 KB
testcase_22 AC 64 ms
62,748 KB
testcase_23 AC 68 ms
62,172 KB
testcase_24 AC 73 ms
62,420 KB
testcase_25 AC 53 ms
64,232 KB
testcase_26 AC 52 ms
62,132 KB
testcase_27 AC 53 ms
62,228 KB
testcase_28 AC 52 ms
62,872 KB
testcase_29 AC 52 ms
62,400 KB
testcase_30 AC 53 ms
64,008 KB
testcase_31 AC 55 ms
65,552 KB
testcase_32 AC 53 ms
63,156 KB
testcase_33 AC 54 ms
63,768 KB
testcase_34 AC 53 ms
61,736 KB
testcase_35 AC 51 ms
62,952 KB
testcase_36 AC 54 ms
65,752 KB
testcase_37 AC 51 ms
62,792 KB
testcase_38 AC 47 ms
61,128 KB
testcase_39 AC 45 ms
60,804 KB
testcase_40 AC 51 ms
62,656 KB
testcase_41 AC 51 ms
64,200 KB
testcase_42 AC 52 ms
63,168 KB
testcase_43 AC 50 ms
63,724 KB
testcase_44 AC 53 ms
64,108 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 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

mod=998244353
S=set(A)
LEN=len(S)

DP=[[0]*1024 for i in range(N+1)]
DP[0][0]=1

for i in range(1,N+1):
    DP[2][0]=0
    for j in range(1024):
        for s in S:
            DP[i][j^s]+=DP[i-1][j]
            DP[i][j^s]%=mod

        DP[i][j]-=DP[i-2][j]*LEN
        DP[i][j]+=DP[i-2][j]

ANS=0
for i in range(X,min(Y+1,1024)):
    ANS=(ANS+DP[N][i])%mod

print(ANS)
0