結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー first_vilfirst_vil
提出日時 2020-06-26 13:57:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 171 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 95,016 KB
最終ジャッジ日時 2024-07-04 12:52:51
合計ジャッジ時間 5,470 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,824 KB
testcase_01 AC 42 ms
51,584 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 37 ms
51,712 KB
testcase_05 AC 38 ms
51,712 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 42 ms
57,984 KB
testcase_08 AC 130 ms
85,888 KB
testcase_09 AC 64 ms
67,456 KB
testcase_10 AC 111 ms
80,512 KB
testcase_11 AC 93 ms
75,648 KB
testcase_12 AC 148 ms
92,160 KB
testcase_13 AC 155 ms
92,288 KB
testcase_14 AC 110 ms
79,872 KB
testcase_15 AC 169 ms
94,592 KB
testcase_16 AC 148 ms
90,240 KB
testcase_17 AC 156 ms
92,416 KB
testcase_18 AC 41 ms
58,112 KB
testcase_19 AC 38 ms
52,096 KB
testcase_20 AC 85 ms
79,488 KB
testcase_21 AC 171 ms
95,016 KB
testcase_22 AC 169 ms
94,592 KB
testcase_23 AC 43 ms
59,392 KB
testcase_24 AC 38 ms
51,968 KB
testcase_25 AC 41 ms
57,856 KB
testcase_26 AC 38 ms
52,068 KB
testcase_27 AC 38 ms
52,608 KB
testcase_28 AC 118 ms
82,816 KB
testcase_29 AC 153 ms
92,160 KB
testcase_30 AC 134 ms
88,192 KB
testcase_31 AC 126 ms
84,864 KB
testcase_32 AC 146 ms
90,496 KB
testcase_33 AC 170 ms
94,592 KB
testcase_34 AC 163 ms
94,208 KB
testcase_35 AC 170 ms
94,720 KB
testcase_36 AC 169 ms
94,592 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=sorted(list(map(int,input().split())),reverse=True)
rank=0
for j in range(60,-1,-1):
    idx=-1
    for i in range(rank,n):
        if a[i]&(1<<j):
            idx=i
            break
    if idx==-1:
        continue
    (a[rank],a[idx])=(a[idx],a[rank])
    for i in range(n):
        if a[i]&(1<<j) and not i==rank:
            a[i]^=a[rank]
    rank+=1
print(1<<rank)
0