結果

問題 No.130 XOR Minimax
ユーザー 37zigen37zigen
提出日時 2016-11-24 19:03:51
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 812 bytes
コンパイル時間 3,382 ms
コンパイル使用メモリ 78,240 KB
実行使用メモリ 71,188 KB
最終ジャッジ日時 2024-05-05 13:04:04
合計ジャッジ時間 23,449 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 132 ms
41,236 KB
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 548 ms
48,736 KB
testcase_05 AC 691 ms
54,556 KB
testcase_06 RE -
testcase_07 WA -
testcase_08 AC 1,446 ms
63,368 KB
testcase_09 RE -
testcase_10 AC 531 ms
48,584 KB
testcase_11 RE -
testcase_12 AC 342 ms
47,512 KB
testcase_13 AC 1,061 ms
58,472 KB
testcase_14 AC 1,446 ms
63,952 KB
testcase_15 AC 209 ms
45,560 KB
testcase_16 AC 1,100 ms
62,336 KB
testcase_17 AC 1,237 ms
59,788 KB
testcase_18 AC 1,302 ms
61,616 KB
testcase_19 AC 1,394 ms
62,444 KB
testcase_20 AC 679 ms
49,428 KB
testcase_21 AC 1,433 ms
62,184 KB
testcase_22 WA -
testcase_23 AC 337 ms
47,484 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 < 100; ++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]) {
						if ((ans & (1L << i)) > 0)
							throw new AssertionError();
						ans |= 1L << i;
						a = tmp;
						Arrays.sort(a);
						break;
					}
				}
			}
		}
		System.out.println(a[n - 1]);

	}
}
0