結果
問題 | No.1082 XORのXOR |
ユーザー | prd_xxx |
提出日時 | 2020-06-19 21:26:47 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 53 ms / 2,000 ms |
コード長 | 152 bytes |
コンパイル時間 | 187 ms |
コンパイル使用メモリ | 82,388 KB |
実行使用メモリ | 62,436 KB |
最終ジャッジ日時 | 2024-07-03 13:46:40 |
合計ジャッジ時間 | 2,727 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
N = int(input()) A = list(map(int,input().split())) ans = 0 for i in range(N-1): for j in range(i+1,N): ans = max(ans, A[i]^A[j]) print(ans)