結果

問題 No.1082 XORのXOR
ユーザー chineristACchineristAC
提出日時 2020-06-19 21:25:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 2,000 ms
コード長 160 bytes
コンパイル時間 228 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 62,180 KB
最終ジャッジ日時 2024-07-03 13:43:23
合計ジャッジ時間 2,446 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,928 KB
testcase_01 AC 35 ms
52,616 KB
testcase_02 AC 36 ms
52,444 KB
testcase_03 AC 46 ms
60,044 KB
testcase_04 AC 46 ms
60,768 KB
testcase_05 AC 46 ms
61,504 KB
testcase_06 AC 48 ms
61,164 KB
testcase_07 AC 49 ms
61,328 KB
testcase_08 AC 47 ms
60,104 KB
testcase_09 AC 47 ms
60,760 KB
testcase_10 AC 48 ms
60,816 KB
testcase_11 AC 45 ms
60,720 KB
testcase_12 AC 46 ms
60,752 KB
testcase_13 AC 47 ms
60,528 KB
testcase_14 AC 48 ms
60,776 KB
testcase_15 AC 47 ms
60,668 KB
testcase_16 AC 47 ms
61,328 KB
testcase_17 AC 46 ms
61,676 KB
testcase_18 AC 47 ms
60,676 KB
testcase_19 AC 46 ms
60,168 KB
testcase_20 AC 47 ms
62,180 KB
testcase_21 AC 46 ms
60,240 KB
testcase_22 AC 47 ms
60,708 KB
testcase_23 AC 45 ms
60,104 KB
testcase_24 AC 46 ms
61,352 KB
testcase_25 AC 45 ms
60,244 KB
testcase_26 AC 45 ms
60,180 KB
testcase_27 AC 46 ms
61,612 KB
testcase_28 AC 35 ms
52,212 KB
testcase_29 AC 34 ms
52,796 KB
testcase_30 AC 34 ms
53,288 KB
testcase_31 AC 34 ms
52,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
ans=-1
for i in range(1,N):
    for j in range(i):
        test=A[i]^A[j]
        ans=max(ans,test)

print(ans)
0