結果

問題 No.1189 Sum is XOR
ユーザー roarisroaris
提出日時 2020-08-22 16:08:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 535 ms / 2,000 ms
コード長 663 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 243,584 KB
最終ジャッジ日時 2024-10-15 10:15:10
合計ジャッジ時間 8,070 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 458 ms
219,164 KB
testcase_01 AC 387 ms
194,656 KB
testcase_02 AC 363 ms
186,212 KB
testcase_03 AC 68 ms
78,592 KB
testcase_04 AC 66 ms
76,416 KB
testcase_05 AC 77 ms
86,784 KB
testcase_06 AC 90 ms
98,688 KB
testcase_07 AC 72 ms
81,280 KB
testcase_08 AC 56 ms
67,968 KB
testcase_09 AC 56 ms
68,480 KB
testcase_10 AC 51 ms
65,920 KB
testcase_11 AC 367 ms
201,448 KB
testcase_12 AC 358 ms
186,320 KB
testcase_13 AC 460 ms
218,264 KB
testcase_14 AC 443 ms
218,152 KB
testcase_15 AC 454 ms
226,816 KB
testcase_16 AC 527 ms
243,584 KB
testcase_17 AC 417 ms
209,664 KB
testcase_18 AC 408 ms
193,496 KB
testcase_19 AC 535 ms
217,544 KB
testcase_20 AC 513 ms
234,320 KB
testcase_21 AC 77 ms
70,528 KB
testcase_22 AC 74 ms
68,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

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

if K>10:
    print(0)
    exit()
    
cnt = Counter(A)
A = list(set(A))
dp = [[[0]*(K+1) for _ in range(1024)] for _ in range(len(A)+1)]
dp[0][0][0] = 1
MOD = 998244353

for i in range(len(A)):
    for j in range(1024):
        for k in range(K+1):
            dp[i+1][j][k] += dp[i][j][k]
            
            if j&A[i]==0 and k+1<=K:
                dp[i+1][j^A[i]][k+1] += cnt[A[i]]*dp[i][j][k]
                dp[i+1][j^A[i]][k+1] %= MOD

ans = 0

for i in range(1024):
    ans += dp[-1][i][K]
    ans %= MOD

print(ans)
0