結果

問題 No.1082 XORのXOR
ユーザー vwxyzvwxyz
提出日時 2024-04-15 12:00:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 57 ms / 2,000 ms
コード長 137 bytes
コンパイル時間 335 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 62,612 KB
最終ジャッジ日時 2024-10-05 07:36:43
合計ジャッジ時間 3,069 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,080 KB
testcase_01 AC 37 ms
52,376 KB
testcase_02 AC 39 ms
52,144 KB
testcase_03 AC 57 ms
61,144 KB
testcase_04 AC 52 ms
60,764 KB
testcase_05 AC 53 ms
60,916 KB
testcase_06 AC 51 ms
61,124 KB
testcase_07 AC 52 ms
61,956 KB
testcase_08 AC 51 ms
61,412 KB
testcase_09 AC 52 ms
61,536 KB
testcase_10 AC 53 ms
61,252 KB
testcase_11 AC 51 ms
61,068 KB
testcase_12 AC 51 ms
61,808 KB
testcase_13 AC 49 ms
60,560 KB
testcase_14 AC 51 ms
61,820 KB
testcase_15 AC 51 ms
62,612 KB
testcase_16 AC 50 ms
60,824 KB
testcase_17 AC 51 ms
61,308 KB
testcase_18 AC 52 ms
60,460 KB
testcase_19 AC 50 ms
61,760 KB
testcase_20 AC 50 ms
61,000 KB
testcase_21 AC 50 ms
61,760 KB
testcase_22 AC 50 ms
61,668 KB
testcase_23 AC 51 ms
61,124 KB
testcase_24 AC 50 ms
60,688 KB
testcase_25 AC 50 ms
61,560 KB
testcase_26 AC 50 ms
61,820 KB
testcase_27 AC 48 ms
60,568 KB
testcase_28 AC 37 ms
53,028 KB
testcase_29 AC 35 ms
52,364 KB
testcase_30 AC 33 ms
52,828 KB
testcase_31 AC 32 ms
51,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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