結果

問題 No.1189 Sum is XOR
ユーザー tktk_snsntktk_snsn
提出日時 2021-01-16 12:04:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 126 ms / 2,000 ms
コード長 528 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,300 KB
実行使用メモリ 105,348 KB
最終ジャッジ日時 2024-05-05 14:08:01
合計ジャッジ時間 3,943 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 119 ms
104,680 KB
testcase_01 AC 108 ms
104,968 KB
testcase_02 AC 112 ms
105,348 KB
testcase_03 AC 67 ms
82,204 KB
testcase_04 AC 61 ms
79,360 KB
testcase_05 AC 71 ms
91,136 KB
testcase_06 AC 91 ms
104,980 KB
testcase_07 AC 66 ms
84,892 KB
testcase_08 AC 54 ms
70,400 KB
testcase_09 AC 54 ms
71,168 KB
testcase_10 AC 51 ms
68,480 KB
testcase_11 AC 91 ms
73,600 KB
testcase_12 AC 113 ms
104,788 KB
testcase_13 AC 115 ms
101,452 KB
testcase_14 AC 95 ms
89,128 KB
testcase_15 AC 106 ms
74,112 KB
testcase_16 AC 107 ms
70,784 KB
testcase_17 AC 78 ms
73,216 KB
testcase_18 AC 89 ms
80,384 KB
testcase_19 AC 126 ms
96,128 KB
testcase_20 AC 112 ms
96,308 KB
testcase_21 AC 45 ms
61,120 KB
testcase_22 AC 45 ms
61,184 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