結果

問題 No.1189 Sum is XOR
ユーザー qumazakiqumazaki
提出日時 2020-09-12 03:15:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 465 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 105,388 KB
最終ジャッジ日時 2024-06-09 10:29:11
合計ジャッジ時間 3,634 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
105,200 KB
testcase_01 AC 98 ms
105,388 KB
testcase_02 AC 100 ms
103,628 KB
testcase_03 AC 55 ms
78,648 KB
testcase_04 AC 57 ms
75,356 KB
testcase_05 AC 66 ms
85,580 KB
testcase_06 AC 75 ms
99,312 KB
testcase_07 AC 61 ms
80,156 KB
testcase_08 AC 47 ms
66,796 KB
testcase_09 AC 48 ms
67,080 KB
testcase_10 AC 46 ms
65,732 KB
testcase_11 AC 70 ms
73,488 KB
testcase_12 AC 94 ms
103,496 KB
testcase_13 AC 99 ms
98,912 KB
testcase_14 AC 87 ms
85,568 KB
testcase_15 AC 80 ms
71,808 KB
testcase_16 AC 82 ms
68,480 KB
testcase_17 AC 74 ms
70,528 KB
testcase_18 AC 77 ms
77,184 KB
testcase_19 AC 92 ms
92,792 KB
testcase_20 AC 101 ms
92,416 KB
testcase_21 AC 51 ms
62,564 KB
testcase_22 AC 56 ms
62,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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

cnt = [0] * (2**10)
for ai in a:
    cnt[ai] += 1

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

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

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