結果

問題 No.1189 Sum is XOR
ユーザー ああいいああいい
提出日時 2022-01-29 20:13:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 583 bytes
コンパイル時間 309 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 156,244 KB
最終ジャッジ日時 2024-06-10 19:18:07
合計ジャッジ時間 6,613 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 322 ms
144,648 KB
testcase_01 AC 225 ms
119,384 KB
testcase_02 AC 199 ms
109,056 KB
testcase_03 AC 57 ms
77,312 KB
testcase_04 AC 54 ms
75,008 KB
testcase_05 AC 64 ms
85,888 KB
testcase_06 AC 76 ms
97,920 KB
testcase_07 AC 62 ms
80,176 KB
testcase_08 AC 47 ms
66,688 KB
testcase_09 AC 47 ms
67,072 KB
testcase_10 AC 44 ms
64,640 KB
testcase_11 AC 224 ms
126,320 KB
testcase_12 AC 193 ms
108,692 KB
testcase_13 AC 313 ms
144,188 KB
testcase_14 AC 273 ms
129,940 KB
testcase_15 AC 298 ms
151,552 KB
testcase_16 AC 337 ms
156,244 KB
testcase_17 AC 247 ms
132,736 KB
testcase_18 AC 199 ms
108,156 KB
testcase_19 AC 298 ms
143,872 KB
testcase_20 AC 334 ms
151,796 KB
testcase_21 AC 134 ms
91,364 KB
testcase_22 AC 133 ms
91,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N,K = map(int,input().split())
A = list(map(int,input().split()))
P = 998244353

import sys
if K > 10:
    print(0)
    exit()

C = 2 ** 10
dp = [[[0] * C for _ in range(K+1)] for _ in range(C)]
dat = [0] * C
dp[0][0][0] = 1
for a in A:
    dat[a] += 1
for bit in range(C-1):
    for k in range(K+1):
        for S in range(C):
            dp[bit + 1][k][S] += dp[bit][k][S]
            if (bit+1) & S == 0 and k < K:
                dp[bit + 1][k+1][S | (bit+1)] += dp[bit][k][S] * dat[bit+1] % P
                dp[bit+1][k+1][S | (bit+1)] %= P
ans = sum(dp[-1][K]) % P
print(ans)
0