結果

問題 No.1189 Sum is XOR
ユーザー marroncastlemarroncastle
提出日時 2020-08-22 17:19:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 238 ms / 2,000 ms
コード長 571 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,216 KB
実行使用メモリ 103,552 KB
最終ジャッジ日時 2024-10-15 11:13:34
合計ジャッジ時間 4,872 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 238 ms
103,552 KB
testcase_01 AC 232 ms
103,296 KB
testcase_02 AC 229 ms
103,552 KB
testcase_03 AC 58 ms
77,184 KB
testcase_04 AC 56 ms
75,008 KB
testcase_05 AC 67 ms
85,504 KB
testcase_06 AC 78 ms
97,536 KB
testcase_07 AC 61 ms
80,128 KB
testcase_08 AC 51 ms
66,816 KB
testcase_09 AC 52 ms
67,072 KB
testcase_10 AC 47 ms
64,640 KB
testcase_11 AC 197 ms
70,784 KB
testcase_12 AC 234 ms
103,296 KB
testcase_13 AC 227 ms
98,176 KB
testcase_14 AC 215 ms
85,248 KB
testcase_15 AC 197 ms
70,528 KB
testcase_16 AC 198 ms
67,072 KB
testcase_17 AC 200 ms
70,400 KB
testcase_18 AC 204 ms
77,184 KB
testcase_19 AC 217 ms
91,648 KB
testcase_20 AC 219 ms
91,264 KB
testcase_21 AC 44 ms
58,752 KB
testcase_22 AC 44 ms
58,624 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import groupby, accumulate, product, permutations, combinations
def solve():
  N, K = map(int, input().split())
  A = list(map(int, input().split()))
  if K>10:
    return 0
  mod = 998244353
  lis = [0]*(1<<10)
  for a in A:
    lis[a] += 1
  dp = [[0]*(1<<10) for _ in range(11)]
  dp[0][0] = 1
  for i in range(1,1<<10):
    if lis[i]==0:
      continue
    for p in range(10):
      for j in range(1<<10):
        if i+j!=i^j:
          continue
        dp[p+1][i+j] += dp[p][j]*lis[i]
        dp[p+1][i+j] %= mod
  return sum(dp[K])%mod
print(solve())
0