結果

問題 No.1082 XORのXOR
ユーザー tentententen
提出日時 2022-08-04 14:10:56
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 1,253 bytes
コンパイル時間 2,842 ms
コンパイル使用メモリ 77,212 KB
実行使用メモリ 39,184 KB
最終ジャッジ日時 2024-09-14 10:33:43
合計ジャッジ時間 6,610 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
36,856 KB
testcase_01 AC 54 ms
36,836 KB
testcase_02 AC 55 ms
36,936 KB
testcase_03 AC 116 ms
38,920 KB
testcase_04 AC 94 ms
38,856 KB
testcase_05 AC 93 ms
38,624 KB
testcase_06 AC 93 ms
39,028 KB
testcase_07 AC 94 ms
38,892 KB
testcase_08 AC 96 ms
38,664 KB
testcase_09 AC 94 ms
38,792 KB
testcase_10 AC 93 ms
38,752 KB
testcase_11 AC 94 ms
38,832 KB
testcase_12 AC 94 ms
38,720 KB
testcase_13 AC 94 ms
38,884 KB
testcase_14 AC 93 ms
39,008 KB
testcase_15 AC 96 ms
38,916 KB
testcase_16 AC 97 ms
38,752 KB
testcase_17 AC 96 ms
38,728 KB
testcase_18 AC 94 ms
38,872 KB
testcase_19 AC 94 ms
39,184 KB
testcase_20 AC 93 ms
38,884 KB
testcase_21 AC 92 ms
39,020 KB
testcase_22 AC 95 ms
38,712 KB
testcase_23 AC 92 ms
38,948 KB
testcase_24 AC 93 ms
39,028 KB
testcase_25 AC 94 ms
38,920 KB
testcase_26 AC 95 ms
38,884 KB
testcase_27 AC 93 ms
38,924 KB
testcase_28 AC 54 ms
36,788 KB
testcase_29 AC 53 ms
36,868 KB
testcase_30 AC 53 ms
36,764 KB
testcase_31 AC 53 ms
36,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

public class Main {
    public static void main(String[] args) throws Exception {
        Scanner sc = new Scanner();
        int n = sc.nextInt();
        int[] values = new int[n];
        long ans = 0;
        for (int i = 0; i < n; i++) {
            values[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, values[i] ^ values[j]);
            }
        }
        System.out.println(max);
    }
}

class Scanner {
    BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
    StringTokenizer st = new StringTokenizer("");
    
    public Scanner() throws Exception {
        
    }
    
    public int nextInt() throws Exception {
        return Integer.parseInt(next());
    }
    
    public long nextLong() throws Exception {
        return Long.parseLong(next());
    }
    
    public double nextDouble() throws Exception {
        return Double.parseDouble(next());
    }
    
    public String next() throws Exception {
        while (!st.hasMoreTokens()) {
            st = new StringTokenizer(br.readLine());
        }
        return st.nextToken();
    }
}
0