結果

問題 No.1189 Sum is XOR
ユーザー titiatitia
提出日時 2020-08-22 15:25:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,715 ms / 2,000 ms
コード長 486 bytes
コンパイル時間 132 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 28,584 KB
最終ジャッジ日時 2024-10-15 09:39:26
合計ジャッジ時間 18,387 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,279 ms
28,456 KB
testcase_01 AC 764 ms
28,452 KB
testcase_02 AC 615 ms
28,456 KB
testcase_03 AC 69 ms
19,072 KB
testcase_04 AC 64 ms
18,044 KB
testcase_05 AC 86 ms
22,880 KB
testcase_06 AC 111 ms
28,584 KB
testcase_07 AC 76 ms
20,472 KB
testcase_08 AC 50 ms
14,944 KB
testcase_09 AC 51 ms
14,976 KB
testcase_10 AC 46 ms
13,696 KB
testcase_11 AC 1,057 ms
14,208 KB
testcase_12 AC 629 ms
28,252 KB
testcase_13 AC 1,281 ms
25,500 KB
testcase_14 AC 1,320 ms
19,920 KB
testcase_15 AC 1,337 ms
13,824 KB
testcase_16 AC 1,715 ms
12,544 KB
testcase_17 AC 1,044 ms
13,952 KB
testcase_18 AC 739 ms
16,568 KB
testcase_19 AC 1,252 ms
23,148 KB
testcase_20 AC 1,562 ms
23,408 KB
testcase_21 AC 33 ms
10,752 KB
testcase_22 AC 32 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

mod=998244353

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

DP=[[0]*(1<<10) for i in range(K+1)]
DP[0][0]=1

for c in C:
    for i in range(K):
        for j in range(1<<10):
            if c & j == 0 :
                DP[i+1][j|c]+=DP[i][j]*C[c]
                DP[i+1][j|c]%=mod

ANS=0
for i in range(1<<10):
    ANS+=DP[K][i]

print(ANS%mod)

0