結果

問題 No.2061 XOR Sort
ユーザー chineristACchineristAC
提出日時 2022-08-26 23:23:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 676 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 123,632 KB
最終ジャッジ日時 2024-10-14 00:08:07
合計ジャッジ時間 13,955 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
55,296 KB
testcase_01 AC 51 ms
55,808 KB
testcase_02 AC 51 ms
55,424 KB
testcase_03 AC 56 ms
62,208 KB
testcase_04 AC 52 ms
55,680 KB
testcase_05 AC 57 ms
62,336 KB
testcase_06 AC 57 ms
62,208 KB
testcase_07 AC 57 ms
61,440 KB
testcase_08 AC 53 ms
55,808 KB
testcase_09 AC 56 ms
61,824 KB
testcase_10 AC 52 ms
55,680 KB
testcase_11 AC 51 ms
55,936 KB
testcase_12 AC 58 ms
62,208 KB
testcase_13 AC 50 ms
55,424 KB
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 AC 200 ms
78,976 KB
testcase_21 AC 369 ms
85,248 KB
testcase_22 WA -
testcase_23 AC 109 ms
77,312 KB
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 207 ms
115,640 KB
testcase_30 AC 52 ms
55,424 KB
testcase_31 AC 103 ms
78,464 KB
testcase_32 AC 52 ms
55,680 KB
testcase_33 AC 51 ms
55,680 KB
testcase_34 AC 53 ms
56,064 KB
testcase_35 AC 53 ms
56,192 KB
testcase_36 AC 53 ms
56,576 KB
testcase_37 AC 52 ms
56,320 KB
testcase_38 AC 52 ms
56,320 KB
testcase_39 AC 53 ms
56,320 KB
testcase_40 AC 53 ms
56,320 KB
testcase_41 AC 52 ms
56,320 KB
testcase_42 AC 52 ms
56,192 KB
testcase_43 AC 53 ms
56,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N = int(input())
A = li()

res = 1
check = [0] * 30

def calc(_A,n):
    if n==-1:
        return 
    X = [a for a in _A if a>>n & 1]
    Y = [a for a in _A if a>>n & 1 == 0]
    if X and Y:
        check[n] = 1
    if n!=0:
        if X:
            calc(X,n-1)
        if Y:
            calc(Y,n-1)

calc(A,29)

for i in range(30):
    if check[i]:
        res *= 2


print(res)
0