結果
問題 | No.2061 XOR Sort |
ユーザー |
|
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 WA * 12 |
ソースコード
import sys,random,bisectfrom collections import deque,defaultdict,Counterfrom heapq import heapify,heappop,heappushfrom itertools import cycle, permutationsfrom math import log,gcdinput = lambda :sys.stdin.readline().rstrip()mi = lambda :map(int,input().split())li = lambda :list(mi())N = int(input())A = li()res = 1check = [0] * 30def calc(_A,n):if n==-1:returnX = [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] = 1if 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 *= 2print(res)