結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
51,712 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 47 ms
58,240 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 38 ms
52,224 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 39 ms
52,096 KB
testcase_07 AC 47 ms
57,600 KB
testcase_08 AC 128 ms
84,480 KB
testcase_09 AC 68 ms
66,560 KB
testcase_10 AC 110 ms
79,232 KB
testcase_11 AC 92 ms
74,368 KB
testcase_12 AC 138 ms
88,448 KB
testcase_13 AC 149 ms
89,728 KB
testcase_14 AC 104 ms
78,592 KB
testcase_15 AC 159 ms
93,056 KB
testcase_16 AC 136 ms
87,040 KB
testcase_17 AC 157 ms
89,856 KB
testcase_18 AC 47 ms
57,984 KB
testcase_19 AC 42 ms
51,968 KB
testcase_20 AC 97 ms
78,592 KB
testcase_21 AC 167 ms
93,568 KB
testcase_22 AC 160 ms
93,212 KB
testcase_23 AC 49 ms
58,880 KB
testcase_24 AC 36 ms
51,584 KB
testcase_25 AC 38 ms
58,196 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 AC 37 ms
51,840 KB
testcase_28 AC 114 ms
81,152 KB
testcase_29 AC 152 ms
91,008 KB
testcase_30 AC 133 ms
86,400 KB
testcase_31 AC 118 ms
83,616 KB
testcase_32 AC 128 ms
87,372 KB
testcase_33 AC 168 ms
93,304 KB
testcase_34 AC 152 ms
92,928 KB
testcase_35 AC 154 ms
93,184 KB
testcase_36 AC 153 ms
93,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))
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