結果

問題 No.1082 XORのXOR
ユーザー syunsukesyunsuke
提出日時 2020-09-15 22:26:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 53 ms / 2,000 ms
コード長 150 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,592 KB
実行使用メモリ 62,808 KB
最終ジャッジ日時 2024-06-22 02:45:29
合計ジャッジ時間 3,077 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,348 KB
testcase_01 AC 36 ms
53,180 KB
testcase_02 AC 38 ms
52,212 KB
testcase_03 AC 53 ms
61,572 KB
testcase_04 AC 50 ms
61,692 KB
testcase_05 AC 51 ms
61,880 KB
testcase_06 AC 52 ms
61,396 KB
testcase_07 AC 52 ms
61,084 KB
testcase_08 AC 50 ms
61,048 KB
testcase_09 AC 50 ms
61,592 KB
testcase_10 AC 49 ms
62,012 KB
testcase_11 AC 49 ms
61,752 KB
testcase_12 AC 49 ms
61,212 KB
testcase_13 AC 49 ms
61,340 KB
testcase_14 AC 48 ms
62,432 KB
testcase_15 AC 50 ms
62,128 KB
testcase_16 AC 48 ms
61,816 KB
testcase_17 AC 50 ms
61,280 KB
testcase_18 AC 49 ms
61,432 KB
testcase_19 AC 49 ms
61,612 KB
testcase_20 AC 49 ms
61,616 KB
testcase_21 AC 50 ms
61,164 KB
testcase_22 AC 50 ms
62,188 KB
testcase_23 AC 51 ms
61,324 KB
testcase_24 AC 50 ms
61,860 KB
testcase_25 AC 50 ms
61,480 KB
testcase_26 AC 50 ms
62,808 KB
testcase_27 AC 50 ms
61,872 KB
testcase_28 AC 38 ms
53,612 KB
testcase_29 AC 37 ms
53,556 KB
testcase_30 AC 38 ms
52,676 KB
testcase_31 AC 38 ms
53,000 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
L=list(map(int,input().split()))
ans=0
for i in range(N):
    for j in range(i+1,N):
        ans=max(ans,L[i]^L[j])
print(ans)
        
0