結果
問題 | No.2061 XOR Sort |
ユーザー | chineristAC |
提出日時 | 2022-08-26 23:19:19 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 498 bytes |
コンパイル時間 | 293 ms |
コンパイル使用メモリ | 82,116 KB |
実行使用メモリ | 102,948 KB |
最終ジャッジ日時 | 2024-10-14 00:03:41 |
合計ジャッジ時間 | 5,677 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
55,848 KB |
testcase_01 | AC | 42 ms
56,656 KB |
testcase_02 | AC | 43 ms
56,268 KB |
testcase_03 | AC | 47 ms
62,156 KB |
testcase_04 | AC | 42 ms
56,420 KB |
testcase_05 | AC | 44 ms
61,504 KB |
testcase_06 | AC | 45 ms
62,272 KB |
testcase_07 | AC | 45 ms
63,016 KB |
testcase_08 | AC | 43 ms
56,424 KB |
testcase_09 | AC | 43 ms
61,080 KB |
testcase_10 | AC | 44 ms
57,220 KB |
testcase_11 | AC | 43 ms
56,012 KB |
testcase_12 | AC | 46 ms
61,428 KB |
testcase_13 | AC | 46 ms
56,760 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | WA | - |
testcase_29 | AC | 78 ms
80,360 KB |
testcase_30 | AC | 43 ms
56,688 KB |
testcase_31 | AC | 54 ms
67,144 KB |
testcase_32 | AC | 41 ms
56,180 KB |
testcase_33 | AC | 40 ms
56,408 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | WA | - |
testcase_43 | WA | - |
ソースコード
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 for i in range(30): x,y = 0,0 for a in A: if a>>i & 1: x += 1 else: y += 1 if x*y >= 1: res *= 2 print(res)