結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 19:00:09
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 744 bytes
コンパイル時間 3,030 ms
コンパイル使用メモリ 77,704 KB
実行使用メモリ 66,908 KB
最終ジャッジ日時 2024-05-05 13:02:07
合計ジャッジ時間 35,992 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 111 ms
40,428 KB
testcase_02 AC 118 ms
40,292 KB
testcase_03 AC 116 ms
41,352 KB
testcase_04 AC 486 ms
48,472 KB
testcase_05 AC 609 ms
54,736 KB
testcase_06 AC 3,249 ms
66,908 KB
testcase_07 WA -
testcase_08 AC 2,783 ms
64,612 KB
testcase_09 WA -
testcase_10 AC 532 ms
48,100 KB
testcase_11 AC 3,062 ms
66,792 KB
testcase_12 AC 336 ms
47,708 KB
testcase_13 AC 1,504 ms
58,492 KB
testcase_14 AC 2,010 ms
63,860 KB
testcase_15 AC 200 ms
46,284 KB
testcase_16 AC 1,554 ms
62,664 KB
testcase_17 AC 1,596 ms
59,748 KB
testcase_18 AC 1,717 ms
61,652 KB
testcase_19 AC 2,078 ms
62,068 KB
testcase_20 AC 899 ms
49,052 KB
testcase_21 AC 2,696 ms
62,000 KB
testcase_22 WA -
testcase_23 AC 337 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