結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー first_vilfirst_vil
提出日時 2020-06-26 13:59:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 5,000 ms
コード長 383 bytes
コンパイル時間 768 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 94,976 KB
最終ジャッジ日時 2024-07-04 12:53:44
合計ジャッジ時間 6,062 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,712 KB
testcase_01 AC 43 ms
51,840 KB
testcase_02 AC 42 ms
52,224 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
52,096 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
51,840 KB
testcase_07 AC 42 ms
58,112 KB
testcase_08 AC 136 ms
85,888 KB
testcase_09 AC 69 ms
67,328 KB
testcase_10 AC 117 ms
81,024 KB
testcase_11 AC 97 ms
75,520 KB
testcase_12 AC 156 ms
92,072 KB
testcase_13 AC 164 ms
92,416 KB
testcase_14 AC 114 ms
80,128 KB
testcase_15 AC 173 ms
94,464 KB
testcase_16 AC 152 ms
90,496 KB
testcase_17 AC 159 ms
92,460 KB
testcase_18 AC 42 ms
57,984 KB
testcase_19 AC 39 ms
51,968 KB
testcase_20 AC 89 ms
79,744 KB
testcase_21 AC 175 ms
94,592 KB
testcase_22 AC 178 ms
94,720 KB
testcase_23 AC 45 ms
59,008 KB
testcase_24 AC 40 ms
51,584 KB
testcase_25 AC 42 ms
57,856 KB
testcase_26 AC 39 ms
51,712 KB
testcase_27 AC 39 ms
52,096 KB
testcase_28 AC 122 ms
82,944 KB
testcase_29 AC 158 ms
92,288 KB
testcase_30 AC 138 ms
88,064 KB
testcase_31 AC 127 ms
85,120 KB
testcase_32 AC 152 ms
90,240 KB
testcase_33 AC 173 ms
94,592 KB
testcase_34 AC 170 ms
94,464 KB
testcase_35 AC 174 ms
94,976 KB
testcase_36 AC 172 ms
94,708 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 i!=rank:
            a[i]^=a[rank]
    rank+=1
print(1<<rank)
0