結果

問題 No.1082 XORのXOR
ユーザー neko_the_shadowneko_the_shadow
提出日時 2020-06-21 15:35:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 125 ms / 2,000 ms
コード長 3,271 bytes
コンパイル時間 3,542 ms
コンパイル使用メモリ 88,860 KB
実行使用メモリ 54,856 KB
最終ジャッジ日時 2023-09-16 18:26:06
合計ジャッジ時間 8,452 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
51,444 KB
testcase_01 AC 65 ms
51,424 KB
testcase_02 AC 65 ms
51,292 KB
testcase_03 AC 115 ms
54,428 KB
testcase_04 AC 115 ms
54,252 KB
testcase_05 AC 118 ms
54,500 KB
testcase_06 AC 119 ms
54,564 KB
testcase_07 AC 119 ms
54,212 KB
testcase_08 AC 117 ms
54,688 KB
testcase_09 AC 118 ms
54,516 KB
testcase_10 AC 114 ms
54,448 KB
testcase_11 AC 118 ms
54,520 KB
testcase_12 AC 119 ms
54,580 KB
testcase_13 AC 120 ms
54,076 KB
testcase_14 AC 120 ms
54,444 KB
testcase_15 AC 119 ms
54,508 KB
testcase_16 AC 119 ms
54,696 KB
testcase_17 AC 116 ms
54,560 KB
testcase_18 AC 118 ms
54,856 KB
testcase_19 AC 116 ms
54,264 KB
testcase_20 AC 123 ms
54,644 KB
testcase_21 AC 121 ms
54,412 KB
testcase_22 AC 118 ms
54,640 KB
testcase_23 AC 116 ms
54,512 KB
testcase_24 AC 120 ms
54,444 KB
testcase_25 AC 118 ms
54,432 KB
testcase_26 AC 118 ms
54,644 KB
testcase_27 AC 125 ms
54,632 KB
testcase_28 AC 67 ms
51,256 KB
testcase_29 AC 67 ms
51,476 KB
testcase_30 AC 66 ms
49,208 KB
testcase_31 AC 66 ms
51,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package _1033;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.io.UncheckedIOException;
import java.lang.reflect.Array;
import java.util.ArrayDeque;
import java.util.Arrays;
import java.util.Deque;
import java.util.Objects;
import java.util.regex.Pattern;
import java.util.stream.Collectors;

public class Main {
    public void exec(Stdin stdin, Stdout stdout) {
        int n = stdin.nextInt();
        int[] a = stdin.nextIntArray(n);
        int ans = Integer.MIN_VALUE;
        for (int i = 0; i < n; i++) {
            for (int j = i + 1; j < n; j++) {
                ans = Math.max(ans, a[i]^a[j]);
            }
        }
        stdout.println(ans);
    }

    public static void main(String[] args) {
        Stdin stdin = new Stdin();
        Stdout stdout = new Stdout();
        new Main().exec(stdin, stdout);
        stdout.flush();
    }


    public static class Stdin {
        private BufferedReader stdin;
        private Deque<String> tokens;
        private Pattern delim;

        public Stdin() {
            stdin = new BufferedReader(new InputStreamReader(System.in));
            tokens = new ArrayDeque<>();
            delim = Pattern.compile(" ");
        }

        public String nextString() {
            try {
                if (tokens.isEmpty()) {
                    String line = stdin.readLine();
                    delim.splitAsStream(line).forEach(tokens::addLast);
                }
                return tokens.pollFirst();
            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }

        public int nextInt() {
            return Integer.parseInt(nextString());
        }

        public double nextDouble() {
            return Double.parseDouble(nextString());
        }

        public int[] nextIntArray(int n) {
            int[] a = new int[n];
            for (int i = 0; i < n; i++) {
                a[i] = nextInt();
            }
            return a;
        }

        public double[] nextDoubleArray(int n) {
            double[] a = new double[n];
            for (int i = 0; i < n; i++) {
                a[i] = nextDouble();
            }
            return a;
        }
    }

    public static class Stdout {
        private PrintWriter stdout;

        public Stdout() {
            stdout =  new PrintWriter(System.out, false);
        }

        public void printf(String format, Object ... args) {
            stdout.printf(format, args);
        }

        public void println(Object ... objs) {
            String line = Arrays.stream(objs).map(this::deepToString).collect(Collectors.joining(" "));
            stdout.println(line);
        }

        private String deepToString(Object o) {
            if (o == null || !o.getClass().isArray()) {
                return Objects.toString(o);
            }

            int len = Array.getLength(o);
            String[] tokens = new String[len];
            for (int i = 0; i < len; i++) {
                tokens[i] = deepToString(Array.get(o, i));
            }
            return "{" + String.join(",", tokens) + "}";
        }

        public void flush() {
            stdout.flush();
        }
    }
}
0