結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 18:57:21
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 3,584 ms
コンパイル使用メモリ 77,832 KB
実行使用メモリ 71,404 KB
最終ジャッジ日時 2024-05-05 13:00:39
合計ジャッジ時間 26,964 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 124 ms
41,400 KB
testcase_02 AC 116 ms
41,616 KB
testcase_03 AC 119 ms
41,472 KB
testcase_04 AC 451 ms
48,712 KB
testcase_05 AC 638 ms
55,100 KB
testcase_06 AC 1,649 ms
58,756 KB
testcase_07 WA -
testcase_08 AC 1,843 ms
63,184 KB
testcase_09 AC 449 ms
48,580 KB
testcase_10 AC 503 ms
48,308 KB
testcase_11 WA -
testcase_12 AC 301 ms
47,736 KB
testcase_13 AC 1,161 ms
58,724 KB
testcase_14 AC 1,504 ms
63,816 KB
testcase_15 AC 203 ms
46,048 KB
testcase_16 AC 1,203 ms
62,712 KB
testcase_17 AC 1,434 ms
59,864 KB
testcase_18 AC 1,356 ms
61,744 KB
testcase_19 AC 1,726 ms
62,496 KB
testcase_20 AC 839 ms
49,744 KB
testcase_21 AC 1,578 ms
62,216 KB
testcase_22 WA -
testcase_23 AC 313 ms
46,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package yukicoder;

import java.util.*;

public class Q130 {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		long[] a = new long[n];
		for (int i = 0; i < n; ++i) {
			a[i] = sc.nextLong();
		}
		Arrays.sort(a);
		long ans = 0;
		for (int t = 0; t < 200; ++t) {
			for (long i = 32; i >= 0; --i) {// 3=1,1,
				if ((a[n - 1] & (1L << i)) > 0) {
					long[] tmp = Arrays.copyOf(a, n);
					long tmpMax = 0;
					for (int j = 0; j < n; ++j) {
						tmp[j] = a[j] ^ (1L << i);
						tmpMax = Math.max(tmpMax, tmp[j]);
					}
					if (tmpMax < a[n - 1]) {
						ans |= 1L << i;
						a = tmp;
						Arrays.sort(a);
						break;
					}
				}
			}
		}
		System.out.println(a[n - 1]);

	}
}
0