結果

問題 No.1082 XORのXOR
ユーザー tentententen
提出日時 2020-08-19 09:15:51
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 2,000 ms
コード長 543 bytes
コンパイル時間 4,113 ms
コンパイル使用メモリ 74,628 KB
実行使用メモリ 53,116 KB
最終ジャッジ日時 2024-10-12 03:34:30
合計ジャッジ時間 10,536 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 109 ms
48,336 KB
testcase_01 AC 130 ms
50,068 KB
testcase_02 AC 134 ms
49,944 KB
testcase_03 AC 224 ms
50,964 KB
testcase_04 AC 232 ms
51,220 KB
testcase_05 AC 228 ms
51,248 KB
testcase_06 AC 231 ms
51,304 KB
testcase_07 AC 215 ms
50,912 KB
testcase_08 AC 223 ms
51,044 KB
testcase_09 AC 230 ms
51,280 KB
testcase_10 AC 227 ms
51,292 KB
testcase_11 AC 220 ms
51,080 KB
testcase_12 AC 226 ms
50,964 KB
testcase_13 AC 222 ms
51,144 KB
testcase_14 AC 222 ms
50,936 KB
testcase_15 AC 225 ms
51,140 KB
testcase_16 AC 218 ms
50,840 KB
testcase_17 AC 226 ms
51,384 KB
testcase_18 AC 228 ms
50,964 KB
testcase_19 AC 230 ms
50,808 KB
testcase_20 AC 227 ms
51,192 KB
testcase_21 AC 230 ms
51,100 KB
testcase_22 AC 229 ms
51,464 KB
testcase_23 AC 231 ms
50,920 KB
testcase_24 AC 235 ms
51,040 KB
testcase_25 AC 229 ms
52,476 KB
testcase_26 AC 230 ms
53,116 KB
testcase_27 AC 235 ms
51,096 KB
testcase_28 AC 128 ms
50,068 KB
testcase_29 AC 127 ms
49,808 KB
testcase_30 AC 125 ms
49,940 KB
testcase_31 AC 132 ms
50,196 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    static final int MOD = 1000000007;
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int n = sc.nextInt();
        int[] arr = new int[n];
        for (int i = 0; i < n; i++) {
            arr[i] = sc.nextInt();
        }
        int max = 0;
        for (int i = 0; i < n - 1; i++) {
            for (int j = i + 1; j < n; j++) {
                max = Math.max(max, arr[i] ^ arr[j]);
            }
        }
        System.out.println(max);
    }
} 
0