結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー yaoshimaxyaoshimax
提出日時 2015-05-10 11:36:55
言語 PyPy2
(7.3.15)
結果
AC  
実行時間 315 ms / 5,000 ms
コード長 516 bytes
コンパイル時間 1,413 ms
コンパイル使用メモリ 76,176 KB
実行使用メモリ 117,956 KB
最終ジャッジ日時 2024-07-04 11:40:33
合計ジャッジ時間 9,324 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
75,456 KB
testcase_01 AC 72 ms
75,280 KB
testcase_02 AC 76 ms
75,044 KB
testcase_03 AC 70 ms
75,532 KB
testcase_04 AC 70 ms
75,020 KB
testcase_05 AC 72 ms
75,412 KB
testcase_06 AC 71 ms
75,524 KB
testcase_07 AC 72 ms
75,552 KB
testcase_08 AC 242 ms
102,944 KB
testcase_09 AC 112 ms
79,384 KB
testcase_10 AC 201 ms
94,572 KB
testcase_11 AC 164 ms
89,696 KB
testcase_12 AC 265 ms
108,296 KB
testcase_13 AC 279 ms
110,276 KB
testcase_14 AC 194 ms
93,756 KB
testcase_15 AC 298 ms
114,332 KB
testcase_16 AC 255 ms
107,516 KB
testcase_17 AC 273 ms
110,376 KB
testcase_18 AC 73 ms
76,180 KB
testcase_19 AC 72 ms
75,172 KB
testcase_20 AC 86 ms
84,752 KB
testcase_21 AC 315 ms
114,488 KB
testcase_22 AC 304 ms
114,612 KB
testcase_23 AC 76 ms
77,100 KB
testcase_24 AC 71 ms
75,524 KB
testcase_25 AC 73 ms
77,096 KB
testcase_26 AC 71 ms
75,180 KB
testcase_27 AC 72 ms
75,380 KB
testcase_28 AC 217 ms
96,804 KB
testcase_29 AC 268 ms
108,972 KB
testcase_30 AC 234 ms
104,620 KB
testcase_31 AC 225 ms
97,488 KB
testcase_32 AC 247 ms
106,376 KB
testcase_33 AC 300 ms
117,956 KB
testcase_34 AC 290 ms
114,060 KB
testcase_35 AC 308 ms
114,340 KB
testcase_36 AC 299 ms
114,208 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(raw_input())
A=map(int,raw_input().split())
leftmost=60
ind=0
while leftmost>=0 and ind <N:
    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