結果

問題 No.1189 Sum is XOR
ユーザー H20H20
提出日時 2022-01-19 13:25:38
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 227 ms / 2,000 ms
コード長 464 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 112,000 KB
最終ジャッジ日時 2024-11-23 13:48:21
合計ジャッジ時間 6,348 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 227 ms
111,616 KB
testcase_01 AC 208 ms
111,488 KB
testcase_02 AC 199 ms
111,360 KB
testcase_03 AC 126 ms
80,768 KB
testcase_04 AC 126 ms
80,768 KB
testcase_05 AC 130 ms
80,768 KB
testcase_06 AC 128 ms
80,896 KB
testcase_07 AC 127 ms
80,768 KB
testcase_08 AC 125 ms
80,768 KB
testcase_09 AC 127 ms
80,896 KB
testcase_10 AC 127 ms
81,024 KB
testcase_11 AC 179 ms
86,912 KB
testcase_12 AC 206 ms
112,000 KB
testcase_13 AC 226 ms
108,288 KB
testcase_14 AC 207 ms
97,792 KB
testcase_15 AC 196 ms
86,784 KB
testcase_16 AC 203 ms
84,096 KB
testcase_17 AC 181 ms
86,400 KB
testcase_18 AC 183 ms
91,264 KB
testcase_19 AC 211 ms
102,656 KB
testcase_20 AC 222 ms
102,656 KB
testcase_21 AC 135 ms
81,536 KB
testcase_22 AC 135 ms
81,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
from importlib.resources import read_binary
N,K = map(int,input().split())
if K>10:
    print(0)
    exit()
A = list(map(int,input().split()))
CA = collections.Counter(A)
mod = 998244353
DP = [[0]*(2**10+1) for _ in range(K+1)]
DP[0][0]=1
for k,v in CA.items():
    for i in reversed(range(K)):
        for j in reversed(range(2**10)):
            if k&j==0:
                DP[i+1][j^k] = (DP[i+1][j^k] + DP[i][j]*v)%mod
print(sum(DP[K])%mod)

0