結果

問題 No.1240 Or Sum of Xor Pair
ユーザー mkawa2mkawa2
提出日時 2023-11-28 14:42:20
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,082 ms / 2,000 ms
コード長 1,423 bytes
コンパイル時間 389 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 154,648 KB
最終ジャッジ日時 2024-09-26 12:57:22
合計ジャッジ時間 35,825 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 902 ms
103,296 KB
testcase_01 AC 899 ms
102,400 KB
testcase_02 AC 910 ms
102,144 KB
testcase_03 AC 950 ms
145,280 KB
testcase_04 AC 941 ms
139,776 KB
testcase_05 AC 947 ms
131,328 KB
testcase_06 AC 941 ms
131,200 KB
testcase_07 AC 946 ms
137,728 KB
testcase_08 AC 933 ms
139,648 KB
testcase_09 AC 927 ms
130,432 KB
testcase_10 AC 959 ms
138,240 KB
testcase_11 AC 957 ms
149,632 KB
testcase_12 AC 1,008 ms
139,520 KB
testcase_13 AC 979 ms
150,784 KB
testcase_14 AC 984 ms
151,552 KB
testcase_15 AC 1,082 ms
147,104 KB
testcase_16 AC 1,067 ms
143,332 KB
testcase_17 AC 1,053 ms
150,216 KB
testcase_18 AC 1,039 ms
138,944 KB
testcase_19 AC 1,056 ms
150,684 KB
testcase_20 AC 1,035 ms
154,004 KB
testcase_21 AC 1,025 ms
137,668 KB
testcase_22 AC 1,022 ms
146,568 KB
testcase_23 AC 1,053 ms
152,224 KB
testcase_24 AC 1,031 ms
152,312 KB
testcase_25 AC 1,065 ms
152,940 KB
testcase_26 AC 1,059 ms
144,116 KB
testcase_27 AC 934 ms
101,888 KB
testcase_28 AC 877 ms
104,576 KB
testcase_29 AC 1,016 ms
154,648 KB
testcase_30 AC 991 ms
149,376 KB
testcase_31 AC 974 ms
127,104 KB
testcase_32 AC 1,007 ms
130,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(1000005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
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 = -1-(-1 << 31)
inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

def hadamard(aa):
    k = 1
    while k < len(aa):
        for i in range(len(aa)):
            if i & k: aa[i ^ k], aa[i] = aa[i ^ k]+aa[i], aa[i ^ k]-aa[i]
        k <<= 1

lim=1<<18
n,x=LI()
aa=LI()

cc=[0]*lim
for a in aa:cc[a]+=1
hadamard(cc)
for i in range(lim):cc[i]**=2
hadamard(cc)
for i in range(lim):cc[i]//=lim
ans=(lim-1)*(sum(cc[:x])-n)

base=1
for i in range(18):
    cc = [0]*lim
    cnt=0
    for a in aa:
        if a&base:continue
        cc[a] += 1
        cnt+=1
    hadamard(cc)
    for i in range(lim): cc[i] **= 2
    hadamard(cc)
    for i in range(lim): cc[i] //= lim
    ans -= base*(sum(cc[:x])-cnt)
    base<<=1

print(ans//2)
0