結果
問題 | No.1082 XORのXOR |
ユーザー |
|
提出日時 | 2022-09-28 14:56:54 |
言語 | C++17 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 4 ms / 2,000 ms |
コード長 | 363 bytes |
コンパイル時間 | 1,976 ms |
コンパイル使用メモリ | 193,020 KB |
最終ジャッジ日時 | 2025-02-07 17:51:51 |
ジャッジサーバーID (参考情報) |
judge4 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 29 |
ソースコード
#include <bits/stdc++.h>#define rep(i,n) for(int i = 0; i < (n); i++)using namespace std;typedef long long ll;int main(){cin.tie(0);ios::sync_with_stdio(0);int N; cin >> N;vector<int> A(N);rep(i,N) cin >> A[i];// max A[i] ^ A[j]int ans = 0;rep(i,N)rep(j,i) ans = max(ans, A[i] ^ A[j]);cout << ans << endl;}