結果

問題 No.1189 Sum is XOR
ユーザー mkawa2mkawa2
提出日時 2021-07-14 22:14:12
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 1,144 bytes
コンパイル時間 163 ms
コンパイル使用メモリ 82,228 KB
実行使用メモリ 104,576 KB
最終ジャッジ日時 2024-07-03 23:03:33
合計ジャッジ時間 3,174 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
104,576 KB
testcase_01 AC 113 ms
104,432 KB
testcase_02 AC 102 ms
103,040 KB
testcase_03 AC 56 ms
78,208 KB
testcase_04 AC 53 ms
75,648 KB
testcase_05 AC 63 ms
86,400 KB
testcase_06 AC 75 ms
98,560 KB
testcase_07 AC 60 ms
80,640 KB
testcase_08 AC 47 ms
67,328 KB
testcase_09 AC 48 ms
68,608 KB
testcase_10 AC 46 ms
66,048 KB
testcase_11 AC 88 ms
71,168 KB
testcase_12 AC 102 ms
102,920 KB
testcase_13 AC 125 ms
98,376 KB
testcase_14 AC 113 ms
85,376 KB
testcase_15 AC 105 ms
71,424 KB
testcase_16 AC 115 ms
68,096 KB
testcase_17 AC 96 ms
70,784 KB
testcase_18 AC 90 ms
77,184 KB
testcase_19 AC 118 ms
91,520 KB
testcase_20 AC 132 ms
92,288 KB
testcase_21 AC 42 ms
59,008 KB
testcase_22 AC 40 ms
59,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
int1 = lambda x: int(x)-1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = 10**16
md = 998244353
# md = 10**9+7

n, k = LI()
aa = LI()
cnt = [0]*1024
for a in aa: cnt[a] += 1

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

def add(i, j, val):
    dp[i][j] = (dp[i][j]+val)%md

dp = [[0]*(1 << 10) for _ in range(k+1)]
dp[0][0] = 1
for a in range(1 << 10):
    if cnt[a] == 0: continue
    for i in range(k):
        for s in range(1 << 10):
            if s & a: continue
            pre = dp[i][s]
            if pre == 0: continue
            add(i+1, s | a, pre*cnt[a])

ans = 0
for s in range(1 << 10):
    ans += dp[k][s]
    ans %= md
print(ans)
0