結果

問題 No.1189 Sum is XOR
ユーザー tikitaka1201tikitaka1201
提出日時 2020-09-24 19:30:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 130 ms / 2,000 ms
コード長 446 bytes
コンパイル時間 249 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 105,140 KB
最終ジャッジ日時 2024-06-28 05:17:11
合計ジャッジ時間 3,800 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
105,140 KB
testcase_01 AC 118 ms
104,448 KB
testcase_02 AC 114 ms
104,832 KB
testcase_03 AC 56 ms
77,184 KB
testcase_04 AC 54 ms
75,008 KB
testcase_05 AC 63 ms
86,016 KB
testcase_06 AC 74 ms
98,176 KB
testcase_07 AC 58 ms
79,488 KB
testcase_08 AC 47 ms
66,560 KB
testcase_09 AC 48 ms
67,200 KB
testcase_10 AC 45 ms
64,384 KB
testcase_11 AC 85 ms
74,368 KB
testcase_12 AC 115 ms
104,704 KB
testcase_13 AC 121 ms
101,632 KB
testcase_14 AC 111 ms
91,540 KB
testcase_15 AC 98 ms
75,008 KB
testcase_16 AC 95 ms
71,552 KB
testcase_17 AC 85 ms
74,112 KB
testcase_18 AC 88 ms
81,280 KB
testcase_19 AC 118 ms
96,128 KB
testcase_20 AC 125 ms
96,000 KB
testcase_21 AC 65 ms
65,408 KB
testcase_22 AC 66 ms
65,280 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

if(k > 10):
    print(0)
    exit()
from collections import Counter
cnt=Counter(a)

dp=[[0] * (2**10) for _ in range(k+1)]
dp[0][0]=1

for x in range(2**10):
    for i in range(k):
        for y in range(2**10):        
            if(x&y)==0:
                dp[i+1][x|y] += dp[i][y] * cnt[x]
                dp[i+1][x|y] %= mod

ans = sum(dp[-1])%mod
print(ans)
0