結果

問題 No.1189 Sum is XOR
ユーザー neginagineginagi
提出日時 2022-12-31 19:14:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 315 ms / 2,000 ms
コード長 1,197 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 117,376 KB
最終ジャッジ日時 2024-05-05 01:54:19
合計ジャッジ時間 6,942 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
116,992 KB
testcase_01 AC 198 ms
117,248 KB
testcase_02 AC 222 ms
117,376 KB
testcase_03 AC 145 ms
101,376 KB
testcase_04 AC 148 ms
99,584 KB
testcase_05 AC 165 ms
107,392 KB
testcase_06 AC 177 ms
116,864 KB
testcase_07 AC 158 ms
102,784 KB
testcase_08 AC 141 ms
93,440 KB
testcase_09 AC 139 ms
94,080 KB
testcase_10 AC 137 ms
92,288 KB
testcase_11 AC 234 ms
93,056 KB
testcase_12 AC 194 ms
117,248 KB
testcase_13 AC 288 ms
113,792 KB
testcase_14 AC 273 ms
103,296 KB
testcase_15 AC 191 ms
92,416 KB
testcase_16 AC 315 ms
90,624 KB
testcase_17 AC 250 ms
92,160 KB
testcase_18 AC 174 ms
97,152 KB
testcase_19 AC 285 ms
107,648 KB
testcase_20 AC 314 ms
107,264 KB
testcase_21 AC 135 ms
88,960 KB
testcase_22 AC 135 ms
88,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
sys.setrecursionlimit(10 ** 7)
INF = float("INF")
MOD = 10 ** 9 + 7
MOD2 = 998244353
from heapq import heappop, heappush
import math
from collections import Counter, deque
from itertools import accumulate, combinations, combinations_with_replacement, permutations
from bisect import bisect_left, bisect_right
import decimal

def inv(a, p):
    x = a
    f = p - 2
    ret = 1
    while f > 1:
        if f % 2 == 0:
            x = x * x % p
            f //= 2
        else:
            ret *= x
            ret %= p
            f -= 1
    ret *= x
    ret %= p
    return ret

n, k = map(int, input().split())
a = list(map(int, input().split()))
d = dict()
for i in a:
    if i not in d:
        d[i] = 0
    d[i] += 1

if k > 10:
    print(0)
else:
    dp = [[0] * 1024 for _ in range(k + 1)]
    dp[0][0] = 1
    for i in range(k):
        for j in range(1024):
            for l in d:
                if j & l == 0:
                    dp[i + 1][j | l] += dp[i][j] * d[l] % MOD2
    ans = 0
    for i in range(1024):
        ans += dp[-1][i]
        ans %= MOD2
    for i in range(1, k + 1):
        ans *= inv(i, MOD2)
        ans %= MOD2
    print(ans)
0