結果

問題 No.1189 Sum is XOR
ユーザー rlangevinrlangevin
提出日時 2023-04-06 12:27:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 537 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 81,724 KB
実行使用メモリ 105,580 KB
最終ジャッジ日時 2024-10-02 11:57:23
合計ジャッジ時間 4,736 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 183 ms
105,212 KB
testcase_01 AC 182 ms
105,580 KB
testcase_02 AC 178 ms
105,424 KB
testcase_03 AC 52 ms
77,640 KB
testcase_04 AC 50 ms
75,844 KB
testcase_05 AC 61 ms
85,940 KB
testcase_06 AC 70 ms
98,628 KB
testcase_07 AC 53 ms
80,404 KB
testcase_08 AC 41 ms
67,592 KB
testcase_09 AC 44 ms
69,220 KB
testcase_10 AC 41 ms
64,656 KB
testcase_11 AC 152 ms
80,356 KB
testcase_12 AC 177 ms
105,124 KB
testcase_13 AC 176 ms
101,612 KB
testcase_14 AC 165 ms
90,912 KB
testcase_15 AC 152 ms
80,076 KB
testcase_16 AC 157 ms
77,236 KB
testcase_17 AC 156 ms
79,344 KB
testcase_18 AC 161 ms
85,040 KB
testcase_19 AC 174 ms
95,760 KB
testcase_20 AC 169 ms
95,728 KB
testcase_21 AC 150 ms
75,912 KB
testcase_22 AC 151 ms
75,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def f(m, m2):
    return m * M2 + m2

N, K = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
M = 11
M2 = 1 << M
if K >= M:
    print(0)
    exit()
D = [0] * M2
for a in A:
    D[a] += 1

ans = 0
dp = [0] * (M2 * (M + 1))
dp[0] = 1
for s in range(M2):
    for t in range(s, M2):
        for i in range(M):
            if s + t == s ^ t:
                dp[f(i + 1, s + t)] += dp[f(i, s)] * D[t]
                dp[f(i + 1, s + t)] %= mod

for i in range(M2):
    ans += dp[f(K, i)]
    ans %= mod

print(ans)
0