結果

問題 No.1189 Sum is XOR
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 12:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 207 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,088 KB
最終ジャッジ日時 2024-11-27 12:04:51
合計ジャッジ時間 4,306 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
104,596 KB
testcase_01 AC 116 ms
104,576 KB
testcase_02 AC 122 ms
104,576 KB
testcase_03 AC 69 ms
81,536 KB
testcase_04 AC 67 ms
79,616 KB
testcase_05 AC 82 ms
91,264 KB
testcase_06 AC 99 ms
105,088 KB
testcase_07 AC 75 ms
84,480 KB
testcase_08 AC 60 ms
70,124 KB
testcase_09 AC 60 ms
71,168 KB
testcase_10 AC 57 ms
68,096 KB
testcase_11 AC 95 ms
73,856 KB
testcase_12 AC 123 ms
104,344 KB
testcase_13 AC 122 ms
101,632 KB
testcase_14 AC 104 ms
89,088 KB
testcase_15 AC 112 ms
73,856 KB
testcase_16 AC 115 ms
70,272 KB
testcase_17 AC 84 ms
72,960 KB
testcase_18 AC 96 ms
80,256 KB
testcase_19 AC 130 ms
96,128 KB
testcase_20 AC 121 ms
96,240 KB
testcase_21 AC 49 ms
60,672 KB
testcase_22 AC 47 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter
N, K = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353
U = 1 << 10

B = Counter(A)
if len(B) < K:
    print(0)
    exit()

dp = [[0] * (U + 1) for _ in range(K + 1)]
dp[0][0] = 1
cnt = 1
for a, val in B.items():
    for i in reversed(range(1, cnt + 1)):
        for j in range(U):
            if a & j:
                continue
            dp[i][a + j] += dp[i - 1][j] * val
            dp[i][a + j] %= mod
    cnt += 1
    cnt = min(K, cnt)

print(sum(dp[K]) % mod)
0