結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー mkawa2mkawa2
提出日時 2020-01-27 12:12:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,991 ms / 5,000 ms
コード長 1,084 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 23,912 KB
最終ジャッジ日時 2024-07-04 12:43:05
合計ジャッジ時間 49,567 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,880 KB
testcase_01 AC 31 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 31 ms
10,880 KB
testcase_04 AC 30 ms
10,880 KB
testcase_05 AC 33 ms
10,880 KB
testcase_06 AC 30 ms
10,880 KB
testcase_07 AC 31 ms
10,880 KB
testcase_08 AC 2,093 ms
18,704 KB
testcase_09 AC 401 ms
13,092 KB
testcase_10 AC 1,547 ms
17,440 KB
testcase_11 AC 1,067 ms
17,100 KB
testcase_12 AC 2,402 ms
23,160 KB
testcase_13 AC 2,635 ms
22,832 KB
testcase_14 AC 1,431 ms
18,184 KB
testcase_15 AC 2,851 ms
23,680 KB
testcase_16 AC 2,322 ms
23,204 KB
testcase_17 AC 2,526 ms
22,604 KB
testcase_18 AC 31 ms
10,880 KB
testcase_19 AC 28 ms
10,880 KB
testcase_20 AC 49 ms
12,800 KB
testcase_21 AC 2,990 ms
22,908 KB
testcase_22 AC 2,940 ms
23,008 KB
testcase_23 AC 31 ms
10,880 KB
testcase_24 AC 29 ms
10,880 KB
testcase_25 AC 31 ms
11,008 KB
testcase_26 AC 29 ms
11,008 KB
testcase_27 AC 32 ms
11,008 KB
testcase_28 AC 1,682 ms
18,740 KB
testcase_29 AC 2,464 ms
22,628 KB
testcase_30 AC 2,097 ms
19,452 KB
testcase_31 AC 1,766 ms
18,184 KB
testcase_32 AC 2,209 ms
23,204 KB
testcase_33 AC 2,910 ms
23,616 KB
testcase_34 AC 2,920 ms
23,756 KB
testcase_35 AC 2,991 ms
23,912 KB
testcase_36 AC 2,951 ms
23,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(10 ** 6)
from bisect import *
from collections import *
from heapq import *

int1 = lambda x: int(x) - 1
p2D = lambda x: print(*x, sep="\n")
def II(): return int(sys.stdin.readline())
def SI(): return sys.stdin.readline()[:-1]
def MI(): return map(int, sys.stdin.readline().split())
def MI1(): return map(int1, sys.stdin.readline().split())
def MF(): return map(float, sys.stdin.readline().split())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LF(): return list(map(float, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
dij = [(0, 1), (1, 0), (0, -1), (-1, 0)]

from heapq import *
def main():
    n = II()
    xx = LI()
    xx=set(xx)
    hp=[]
    for x in xx:heappush(hp,-x)
    pre=0
    cnt=0
    while hp:
        x=-heappop(hp)
        if x==0:break
        if x.bit_length()==pre.bit_length():
            heappush(hp,-(x^pre))
        else:
            pre=x
            cnt+=1
    print(pow(2,cnt))

main()
0