結果

問題 No.1082 XORのXOR
ユーザー H20H20
提出日時 2020-11-30 08:55:53
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 144 bytes
コンパイル時間 833 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 62,800 KB
最終ジャッジ日時 2024-09-13 02:14:40
合計ジャッジ時間 3,197 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,576 KB
testcase_01 AC 37 ms
53,068 KB
testcase_02 AC 38 ms
52,888 KB
testcase_03 AC 53 ms
62,080 KB
testcase_04 AC 54 ms
61,052 KB
testcase_05 AC 54 ms
61,012 KB
testcase_06 AC 55 ms
62,724 KB
testcase_07 AC 58 ms
62,440 KB
testcase_08 AC 56 ms
62,592 KB
testcase_09 AC 54 ms
61,136 KB
testcase_10 AC 53 ms
61,020 KB
testcase_11 AC 55 ms
61,532 KB
testcase_12 AC 54 ms
62,800 KB
testcase_13 AC 54 ms
61,348 KB
testcase_14 AC 54 ms
62,168 KB
testcase_15 AC 54 ms
61,300 KB
testcase_16 AC 54 ms
60,868 KB
testcase_17 AC 54 ms
60,968 KB
testcase_18 AC 54 ms
60,996 KB
testcase_19 AC 54 ms
61,748 KB
testcase_20 AC 55 ms
62,256 KB
testcase_21 AC 55 ms
61,052 KB
testcase_22 AC 54 ms
61,036 KB
testcase_23 AC 54 ms
61,392 KB
testcase_24 AC 54 ms
61,820 KB
testcase_25 AC 53 ms
61,000 KB
testcase_26 AC 54 ms
61,272 KB
testcase_27 AC 54 ms
61,396 KB
testcase_28 AC 36 ms
52,772 KB
testcase_29 AC 38 ms
53,492 KB
testcase_30 AC 37 ms
52,272 KB
testcase_31 AC 38 ms
52,352 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