結果
問題 | No.130 XOR Minimax |
ユーザー | ki_ki33 |
提出日時 | 2015-01-17 00:13:24 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,302 bytes |
コンパイル時間 | 3,248 ms |
コンパイル使用メモリ | 78,136 KB |
実行使用メモリ | 69,628 KB |
最終ジャッジ日時 | 2024-06-22 13:14:39 |
合計ジャッジ時間 | 25,162 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 138 ms
54,060 KB |
testcase_02 | AC | 136 ms
54,036 KB |
testcase_03 | AC | 138 ms
55,900 KB |
testcase_04 | AC | 1,392 ms
69,332 KB |
testcase_05 | AC | 1,581 ms
69,280 KB |
testcase_06 | AC | 1,356 ms
69,388 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 1,210 ms
69,316 KB |
testcase_12 | WA | - |
testcase_13 | AC | 1,096 ms
69,332 KB |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
ソースコード
import java.io.BufferedInputStream; import java.io.IOException; import java.math.BigDecimal; import java.math.BigInteger; import java.util.*; import java.util.Map.Entry; public class Main { public static final int C = 1000000007; static final int CY = 1000000000; //static boolean MAP[][]; static int N; static long M; static int MAX = -1; //static int tic[][]; static int A[]; //static int max; static int DP[][][]; static int ST[][]; //static int p[]; //static ArrayList<HashSet<Integer>> al; static TreeMap<Integer, ArrayList<Integer>> hm; //static ArrayList<Integer> al; //static int a[][]; //static char[][] ch; //static ArrayList<HashMap<Long, Long>> al; //static String a[]; //static String str; public static void main(String[] args) { StringBuilder sb = new StringBuilder(); BufferedInputStream bs = new BufferedInputStream(System.in); Scanner sc = new Scanner(bs); N = sc.nextInt(); A= new int[N]; for (int i=0; i < N; i++) { A[i] = sc.nextInt(); } //BigInteger bi = new BigInteger("0"); long ans = Integer.MAX_VALUE; for (int i=0; i < N; i++){ int max = 0; for (int t=0; t < N; t++) { max = Math.max(max, A[i] ^ A[t]); } ans = Math.min(ans, max); } System.out.println(ans); } }