結果
問題 | No.1189 Sum is XOR |
ユーザー | ayaoni |
提出日時 | 2020-12-11 10:31:35 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,080 bytes |
コンパイル時間 | 287 ms |
コンパイル使用メモリ | 82,284 KB |
実行使用メモリ | 104,080 KB |
最終ジャッジ日時 | 2024-09-19 21:14:42 |
合計ジャッジ時間 | 3,642 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 55 ms
77,812 KB |
testcase_04 | AC | 51 ms
75,948 KB |
testcase_05 | AC | 60 ms
87,952 KB |
testcase_06 | AC | 67 ms
98,860 KB |
testcase_07 | AC | 54 ms
81,196 KB |
testcase_08 | AC | 43 ms
67,836 KB |
testcase_09 | AC | 44 ms
67,756 KB |
testcase_10 | AC | 41 ms
65,276 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | AC | 57 ms
69,276 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 46 ms
62,620 KB |
testcase_22 | AC | 47 ms
62,664 KB |
ソースコード
import sys sys.setrecursionlimit(10**7) def I(): return int(sys.stdin.readline().rstrip()) def MI(): return map(int,sys.stdin.readline().rstrip().split()) def LI(): return list(map(int,sys.stdin.readline().rstrip().split())) def LI2(): return list(map(int,sys.stdin.readline().rstrip())) def S(): return sys.stdin.readline().rstrip() def LS(): return list(sys.stdin.readline().rstrip().split()) def LS2(): return list(sys.stdin.readline().rstrip()) N,K = MI() A = LI() mod = 998244353 if K >= 11: print(0) exit() count = [0]*1024 for a in A: count[a] += 1 dp = [[0]*1024 for _ in range(K+1)] # dp[i][j] = 和集合がjに含まれるような、i個の数字の選び方 for j in range(1024): k = j while k: dp[0][j] += count[k] k = (k-1) & j dp[0][j] += 1 for i in range(1,K+1): for j in range(1,1024): k = j while k: dp[i][j] += dp[i-1][j^k]*count[k] dp[i][j] %= mod k = (k-1) & j x = 1 for i in range(2,K+1): x *= i ans = dp[-1][-1]*pow(x,mod-2,mod) print(ans % mod)