結果

問題 No.1082 XORのXOR
ユーザー etale.K3etale.K3
提出日時 2021-04-26 10:05:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 93 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 10,476 KB
実行使用メモリ 166,076 KB
最終ジャッジ日時 2023-09-18 01:43:26
合計ジャッジ時間 11,061 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 17 ms
7,780 KB
testcase_01 AC 15 ms
7,928 KB
testcase_02 AC 15 ms
7,916 KB
testcase_03 AC 355 ms
164,864 KB
testcase_04 AC 356 ms
164,032 KB
testcase_05 AC 354 ms
164,504 KB
testcase_06 AC 355 ms
164,392 KB
testcase_07 AC 358 ms
164,472 KB
testcase_08 AC 350 ms
165,032 KB
testcase_09 AC 356 ms
163,732 KB
testcase_10 AC 352 ms
163,604 KB
testcase_11 AC 352 ms
163,728 KB
testcase_12 AC 356 ms
164,424 KB
testcase_13 AC 359 ms
163,864 KB
testcase_14 AC 355 ms
164,388 KB
testcase_15 AC 358 ms
164,684 KB
testcase_16 AC 360 ms
164,232 KB
testcase_17 AC 360 ms
164,308 KB
testcase_18 AC 356 ms
164,156 KB
testcase_19 AC 354 ms
164,564 KB
testcase_20 AC 359 ms
164,140 KB
testcase_21 AC 349 ms
163,612 KB
testcase_22 AC 356 ms
166,028 KB
testcase_23 AC 356 ms
163,996 KB
testcase_24 AC 356 ms
164,572 KB
testcase_25 AC 351 ms
166,076 KB
testcase_26 AC 362 ms
164,408 KB
testcase_27 AC 357 ms
165,652 KB
testcase_28 AC 15 ms
7,756 KB
testcase_29 AC 15 ms
7,780 KB
testcase_30 AC 15 ms
7,732 KB
testcase_31 AC 15 ms
7,792 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))

print(max([x^y for x in A for y in A]))
0