結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:34:39
言語 Python2
(2.7.18)
結果
RE  
実行時間 -
コード長 505 bytes
コンパイル時間 698 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 16,584 KB
最終ジャッジ日時 2024-07-04 11:41:41
合計ジャッジ時間 36,614 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,816 KB
testcase_01 AC 11 ms
6,940 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 RE -
testcase_04 AC 11 ms
6,940 KB
testcase_05 AC 10 ms
6,940 KB
testcase_06 RE -
testcase_07 AC 12 ms
6,940 KB
testcase_08 AC 1,479 ms
13,476 KB
testcase_09 AC 278 ms
7,824 KB
testcase_10 AC 1,083 ms
11,764 KB
testcase_11 AC 740 ms
10,288 KB
testcase_12 AC 1,730 ms
14,824 KB
testcase_13 AC 1,879 ms
15,432 KB
testcase_14 AC 1,017 ms
11,420 KB
testcase_15 AC 2,179 ms
16,088 KB
testcase_16 AC 1,737 ms
14,420 KB
testcase_17 AC 1,862 ms
15,268 KB
testcase_18 AC 12 ms
6,940 KB
testcase_19 AC 11 ms
6,944 KB
testcase_20 AC 81 ms
10,236 KB
testcase_21 AC 2,227 ms
16,584 KB
testcase_22 AC 2,208 ms
16,584 KB
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 RE -
testcase_27 RE -
testcase_28 AC 1,188 ms
12,412 KB
testcase_29 AC 1,779 ms
15,016 KB
testcase_30 AC 1,524 ms
14,048 KB
testcase_31 AC 1,228 ms
13,068 KB
testcase_32 AC 1,621 ms
14,608 KB
testcase_33 AC 2,121 ms
16,376 KB
testcase_34 AC 2,089 ms
16,176 KB
testcase_35 AC 2,055 ms
16,272 KB
testcase_36 AC 2,159 ms
16,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
leftmost=60
ind=0
while leftmost>=0:
    A.sort()
    A.reverse()
    #for a in A:
    #    print format(a,'b')
    #print 
    while leftmost>=0 and (A[ind]&(1<<leftmost))==0:
        leftmost-=1
    if leftmost<0:
        break
    #print ind,":",leftmost,"...",(1<<leftmost),"&",A[ind]
    for i in range(N):
        if i==ind:
            continue
        if (A[i] &(1<<leftmost)) !=0:
            A[i]^=A[ind]
    ind+=1
    leftmost-=1
print 1<<ind
0