結果
問題 | No.1189 Sum is XOR |
ユーザー | nebocco |
提出日時 | 2020-08-22 15:42:36 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 605 bytes |
コンパイル時間 | 86 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 28,592 KB |
最終ジャッジ日時 | 2024-10-15 09:53:50 |
合計ジャッジ時間 | 12,874 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | AC | 69 ms
19,136 KB |
testcase_04 | AC | 62 ms
17,892 KB |
testcase_05 | AC | 86 ms
22,632 KB |
testcase_06 | AC | 112 ms
28,336 KB |
testcase_07 | AC | 76 ms
20,356 KB |
testcase_08 | AC | 49 ms
14,704 KB |
testcase_09 | AC | 49 ms
14,720 KB |
testcase_10 | AC | 46 ms
13,824 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | AC | 30 ms
10,624 KB |
testcase_22 | AC | 30 ms
10,624 KB |
ソースコード
import sys sys.setrecursionlimit(10**6) n, k = map(int, input().split()) a = list(map(int, input().split())) g = [0] * 1024 for x in a: g[x] += 1 def gen(x, n, l): if bin(x).count('1') < n: yield [0] elif n == 0: yield l else: y = x while y: if g[y] > 0: yield from gen(x ^ y, n - 1, l + [y]) y = (y - 1) & x if l and y < l[-1]: break ans = 0 mod = 998244353 for l in gen(1023, k, list()): cur = 1 for x in l: cur = cur * g[x] % mod ans = (ans + cur) % mod print(ans)