結果

問題 No.184 たのしい排他的論理和(HARD)
ユーザー first_vilfirst_vil
提出日時 2020-06-26 13:56:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,246 ms / 5,000 ms
コード長 387 bytes
コンパイル時間 115 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,916 KB
最終ジャッジ日時 2024-07-04 12:55:22
合計ジャッジ時間 38,817 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 28 ms
10,752 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 27 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 1,531 ms
18,584 KB
testcase_09 AC 336 ms
12,324 KB
testcase_10 AC 1,136 ms
16,628 KB
testcase_11 AC 803 ms
14,896 KB
testcase_12 AC 1,836 ms
19,908 KB
testcase_13 AC 1,919 ms
20,648 KB
testcase_14 AC 1,079 ms
16,412 KB
testcase_15 AC 2,074 ms
21,556 KB
testcase_16 AC 1,820 ms
19,864 KB
testcase_17 AC 1,852 ms
20,488 KB
testcase_18 AC 28 ms
10,752 KB
testcase_19 AC 27 ms
10,752 KB
testcase_20 AC 1,307 ms
12,636 KB
testcase_21 AC 2,246 ms
21,916 KB
testcase_22 AC 2,146 ms
21,916 KB
testcase_23 AC 28 ms
10,752 KB
testcase_24 AC 28 ms
10,752 KB
testcase_25 AC 28 ms
10,752 KB
testcase_26 AC 27 ms
10,752 KB
testcase_27 AC 28 ms
10,752 KB
testcase_28 AC 1,238 ms
17,708 KB
testcase_29 AC 1,912 ms
20,492 KB
testcase_30 AC 1,659 ms
19,144 KB
testcase_31 AC 1,357 ms
18,044 KB
testcase_32 AC 1,779 ms
19,940 KB
testcase_33 AC 2,189 ms
21,580 KB
testcase_34 AC 2,084 ms
21,460 KB
testcase_35 AC 2,161 ms
21,728 KB
testcase_36 AC 2,238 ms
21,696 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