結果
問題 | No.1304 あなたは基本が何か知っていますか?私は知っています. |
ユーザー | titia |
提出日時 | 2020-12-01 06:25:39 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
RE
|
実行時間 | - |
コード長 | 430 bytes |
コンパイル時間 | 757 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 545,796 KB |
最終ジャッジ日時 | 2024-06-12 09:42:54 |
合計ジャッジ時間 | 31,897 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 26 ms
17,696 KB |
testcase_01 | AC | 30 ms
504,992 KB |
testcase_02 | RE | - |
testcase_03 | MLE | - |
testcase_04 | RE | - |
testcase_05 | MLE | - |
testcase_06 | RE | - |
testcase_07 | MLE | - |
testcase_08 | RE | - |
testcase_09 | MLE | - |
testcase_10 | RE | - |
testcase_11 | MLE | - |
testcase_12 | RE | - |
testcase_13 | MLE | - |
testcase_14 | RE | - |
testcase_15 | MLE | - |
testcase_16 | RE | - |
testcase_17 | RE | - |
testcase_18 | RE | - |
testcase_19 | RE | - |
testcase_20 | RE | - |
testcase_21 | RE | - |
testcase_22 | RE | - |
testcase_23 | RE | - |
testcase_24 | RE | - |
testcase_25 | RE | - |
testcase_26 | RE | - |
testcase_27 | RE | - |
testcase_28 | RE | - |
testcase_29 | RE | - |
testcase_30 | RE | - |
testcase_31 | RE | - |
testcase_32 | RE | - |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | RE | - |
testcase_41 | RE | - |
testcase_42 | RE | - |
testcase_43 | RE | - |
testcase_44 | RE | - |
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 | - |
ソースコード
N,K,X,Y=map(int,input().split()) A=list(map(int,input().split())) mod=998244353 S=set(A) LEN=len(S) DP=[[0]*16 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(16): 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,16)): ANS=(ANS+DP[N][i])%mod print(ANS)