結果

問題 No.1189 Sum is XOR
ユーザー H3PO4H3PO4
提出日時 2021-11-27 08:18:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 94 ms / 2,000 ms
コード長 426 bytes
コンパイル時間 260 ms
コンパイル使用メモリ 82,024 KB
実行使用メモリ 97,480 KB
最終ジャッジ日時 2024-06-30 00:38:22
合計ジャッジ時間 3,669 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 93 ms
91,468 KB
testcase_01 AC 91 ms
91,416 KB
testcase_02 AC 91 ms
91,800 KB
testcase_03 AC 58 ms
74,304 KB
testcase_04 AC 58 ms
73,148 KB
testcase_05 AC 68 ms
81,208 KB
testcase_06 AC 90 ms
97,480 KB
testcase_07 AC 62 ms
76,472 KB
testcase_08 AC 51 ms
66,768 KB
testcase_09 AC 53 ms
68,412 KB
testcase_10 AC 52 ms
67,416 KB
testcase_11 AC 66 ms
73,368 KB
testcase_12 AC 94 ms
91,612 KB
testcase_13 AC 93 ms
89,704 KB
testcase_14 AC 83 ms
84,420 KB
testcase_15 AC 67 ms
73,472 KB
testcase_16 AC 67 ms
73,196 KB
testcase_17 AC 66 ms
74,856 KB
testcase_18 AC 71 ms
78,784 KB
testcase_19 AC 87 ms
87,028 KB
testcase_20 AC 87 ms
87,072 KB
testcase_21 AC 51 ms
63,212 KB
testcase_22 AC 49 ms
63,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

N, K = map(int, input().split())
A = Counter(map(int, input().split()))
MOD = 998244353

if K > 10: print(0);exit()

dp = [[0] * (1 << 10) for _ in range(K + 1)]
dp[0][0] = 1
for k, v in A.items():
    for b in range(1 << 10):
        if not k & b:
            for n in range(K):
                dp[n + 1][k ^ b] += dp[n][b] * v
                dp[n + 1][k ^ b] %= MOD
print(sum(dp[K]) % MOD)
0