結果

問題 No.1082 XORのXOR
ユーザー dangodango
提出日時 2023-06-16 19:24:05
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 2,000 ms
コード長 94 bytes
コンパイル時間 345 ms
コンパイル使用メモリ 82,012 KB
実行使用メモリ 236,440 KB
最終ジャッジ日時 2024-06-24 11:22:10
合計ジャッジ時間 6,695 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,744 KB
testcase_01 AC 38 ms
53,024 KB
testcase_02 AC 37 ms
51,768 KB
testcase_03 AC 184 ms
234,748 KB
testcase_04 AC 193 ms
234,972 KB
testcase_05 AC 195 ms
234,964 KB
testcase_06 AC 193 ms
236,172 KB
testcase_07 AC 192 ms
235,676 KB
testcase_08 AC 181 ms
235,592 KB
testcase_09 AC 192 ms
235,324 KB
testcase_10 AC 195 ms
235,412 KB
testcase_11 AC 180 ms
235,540 KB
testcase_12 AC 195 ms
235,540 KB
testcase_13 AC 193 ms
236,440 KB
testcase_14 AC 199 ms
235,276 KB
testcase_15 AC 194 ms
235,200 KB
testcase_16 AC 193 ms
235,308 KB
testcase_17 AC 192 ms
234,988 KB
testcase_18 AC 194 ms
234,964 KB
testcase_19 AC 186 ms
234,592 KB
testcase_20 AC 202 ms
235,164 KB
testcase_21 AC 180 ms
235,116 KB
testcase_22 AC 198 ms
235,004 KB
testcase_23 AC 197 ms
235,540 KB
testcase_24 AC 201 ms
235,420 KB
testcase_25 AC 192 ms
234,360 KB
testcase_26 AC 191 ms
235,380 KB
testcase_27 AC 193 ms
234,728 KB
testcase_28 AC 39 ms
52,112 KB
testcase_29 AC 39 ms
52,616 KB
testcase_30 AC 42 ms
53,300 KB
testcase_31 AC 42 ms
52,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
print(max([X ^ Y for X in A for Y in A]))
0