結果

問題 No.1189 Sum is XOR
ユーザー lloyzlloyz
提出日時 2023-10-29 02:11:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 578 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 105,600 KB
最終ジャッジ日時 2024-09-25 16:37:16
合計ジャッジ時間 2,833 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 97 ms
105,600 KB
testcase_01 AC 94 ms
105,104 KB
testcase_02 AC 90 ms
105,312 KB
testcase_03 AC 54 ms
77,996 KB
testcase_04 AC 54 ms
76,192 KB
testcase_05 AC 60 ms
85,848 KB
testcase_06 AC 72 ms
98,776 KB
testcase_07 AC 56 ms
80,340 KB
testcase_08 AC 45 ms
67,664 KB
testcase_09 AC 47 ms
68,972 KB
testcase_10 AC 44 ms
66,808 KB
testcase_11 AC 63 ms
72,168 KB
testcase_12 AC 90 ms
105,032 KB
testcase_13 AC 88 ms
100,168 KB
testcase_14 AC 77 ms
87,872 KB
testcase_15 AC 69 ms
73,584 KB
testcase_16 AC 68 ms
70,156 KB
testcase_17 AC 66 ms
71,532 KB
testcase_18 AC 67 ms
79,580 KB
testcase_19 AC 85 ms
93,688 KB
testcase_20 AC 87 ms
92,976 KB
testcase_21 AC 48 ms
61,892 KB
testcase_22 AC 48 ms
62,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, k = map(int, input().split())
A = list(map(int, input().split()))
mod = 998244353

if k > 10:
    print(0)
    exit()

DP = [[0 for _ in range(k + 1)] for _ in range(1 << 10)]
for i in range(n):
    DP[A[i]][1] += 1
for i in range(2, k + 1):
    for bit1 in range(1 << 10):
        for bit2 in range(bit1, 1 << 10):
            if bit1 ^ bit2 == bit1 | bit2:
                nbit = bit1 | bit2
                DP[nbit][i] += DP[bit1][i - 1] * DP[bit2][1] % mod
                DP[nbit][i] %= mod
ans = 0
for i in range(1 << 10):
    ans += DP[i][k]
    ans %= mod
print(ans)
0