結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 18:59:15
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 743 bytes
コンパイル時間 3,245 ms
コンパイル使用メモリ 78,104 KB
実行使用メモリ 63,716 KB
最終ジャッジ日時 2024-05-05 13:01:18
合計ジャッジ時間 35,482 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 103 ms
40,180 KB
testcase_02 AC 116 ms
41,324 KB
testcase_03 AC 106 ms
40,140 KB
testcase_04 AC 513 ms
48,660 KB
testcase_05 AC 776 ms
53,972 KB
testcase_06 AC 2,718 ms
58,304 KB
testcase_07 WA -
testcase_08 AC 2,764 ms
63,100 KB
testcase_09 AC 483 ms
47,804 KB
testcase_10 AC 579 ms
48,380 KB
testcase_11 WA -
testcase_12 AC 386 ms
47,620 KB
testcase_13 AC 1,539 ms
58,416 KB
testcase_14 AC 2,246 ms
63,716 KB
testcase_15 AC 217 ms
46,252 KB
testcase_16 AC 1,599 ms
62,312 KB
testcase_17 AC 1,612 ms
59,896 KB
testcase_18 AC 1,789 ms
61,308 KB
testcase_19 AC 2,099 ms
62,120 KB
testcase_20 AC 979 ms
48,900 KB
testcase_21 AC 2,431 ms
61,936 KB
testcase_22 WA -
testcase_23 AC 336 ms
47,476 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 < 400; ++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