結果

問題 No.1189 Sum is XOR
ユーザー KudeKude
提出日時 2020-08-28 03:01:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 120 ms / 2,000 ms
コード長 527 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 89,600 KB
最終ジャッジ日時 2024-11-09 00:58:55
合計ジャッジ時間 3,204 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 120 ms
89,600 KB
testcase_01 AC 110 ms
89,472 KB
testcase_02 AC 107 ms
89,216 KB
testcase_03 AC 60 ms
70,528 KB
testcase_04 AC 59 ms
69,248 KB
testcase_05 AC 67 ms
76,544 KB
testcase_06 AC 76 ms
83,712 KB
testcase_07 AC 62 ms
72,320 KB
testcase_08 AC 53 ms
64,128 KB
testcase_09 AC 54 ms
64,000 KB
testcase_10 AC 53 ms
62,464 KB
testcase_11 AC 91 ms
68,480 KB
testcase_12 AC 106 ms
89,216 KB
testcase_13 AC 115 ms
85,888 KB
testcase_14 AC 107 ms
77,568 KB
testcase_15 AC 99 ms
68,736 KB
testcase_16 AC 102 ms
66,688 KB
testcase_17 AC 93 ms
68,480 KB
testcase_18 AC 91 ms
72,320 KB
testcase_19 AC 111 ms
81,664 KB
testcase_20 AC 117 ms
82,176 KB
testcase_21 AC 71 ms
62,720 KB
testcase_22 AC 71 ms
62,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

MOD = 998244353
n, k = map(int, input().split())
d = [0] * 2 ** 10
for a in map(int, input().split()):
    d[a] += 1
if k > 10:
    print(0)
    exit()
dp = [0] * 2 ** 10
dp[0] = 1
for _ in range(k):
    ndp = [0] * 2 ** 10
    for i in range(2**10):
        for j in range(1, 2**10):
            if i & j:
                continue
            ndp[i|j] += dp[i] * d[j]
            ndp[i|j] %= MOD
    dp = ndp
fact = 1
for x in range(1, k+1):
    fact *= x
    fact %= MOD
ans = sum(dp) * pow(fact, MOD-2, MOD) % MOD
print(ans)
0