結果

問題 No.1304 あなたは基本が何か知っていますか?私は知っています.
ユーザー titiatitia
提出日時 2020-12-01 06:26:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
MLE  
実行時間 -
コード長 436 bytes
コンパイル時間 480 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 828,392 KB
最終ジャッジ日時 2024-06-12 09:43:58
合計ジャッジ時間 39,325 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 MLE -
testcase_01 MLE -
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 70 ms
11,008 KB
testcase_04 WA -
testcase_05 AC 422 ms
10,496 KB
testcase_06 WA -
testcase_07 AC 807 ms
10,624 KB
testcase_08 AC 102 ms
10,752 KB
testcase_09 AC 762 ms
10,752 KB
testcase_10 AC 520 ms
10,624 KB
testcase_11 AC 753 ms
10,752 KB
testcase_12 AC 594 ms
10,624 KB
testcase_13 AC 390 ms
10,496 KB
testcase_14 AC 479 ms
10,624 KB
testcase_15 AC 467 ms
10,624 KB
testcase_16 AC 566 ms
10,880 KB
testcase_17 AC 122 ms
10,496 KB
testcase_18 AC 503 ms
10,624 KB
testcase_19 AC 272 ms
10,624 KB
testcase_20 AC 70 ms
10,496 KB
testcase_21 AC 275 ms
10,624 KB
testcase_22 AC 584 ms
10,752 KB
testcase_23 AC 728 ms
10,752 KB
testcase_24 AC 881 ms
10,880 KB
testcase_25 AC 61 ms
10,752 KB
testcase_26 AC 103 ms
10,752 KB
testcase_27 AC 130 ms
10,752 KB
testcase_28 AC 87 ms
10,752 KB
testcase_29 AC 73 ms
10,752 KB
testcase_30 AC 40 ms
10,496 KB
testcase_31 AC 56 ms
10,624 KB
testcase_32 AC 130 ms
10,624 KB
testcase_33 AC 59 ms
10,752 KB
testcase_34 AC 114 ms
10,752 KB
testcase_35 AC 67 ms
10,880 KB
testcase_36 AC 61 ms
10,752 KB
testcase_37 AC 58 ms
10,496 KB
testcase_38 AC 36 ms
10,496 KB
testcase_39 AC 42 ms
10,880 KB
testcase_40 AC 62 ms
10,752 KB
testcase_41 AC 50 ms
10,624 KB
testcase_42 AC 66 ms
10,752 KB
testcase_43 AC 61 ms
10,624 KB
testcase_44 AC 58 ms
10,624 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 TLE -
06_evil_C_02 TLE -
06_evil_C_03 TLE -
06_evil_C_04 TLE -
06_evil_C_05 TLE -
06_evil_C_06 TLE -
06_evil_C_07 TLE -
06_evil_C_08 TLE -
06_evil_C_09 TLE -
06_evil_C_10 MLE -
権限があれば一括ダウンロードができます

ソースコード

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