結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー htensaihtensai
提出日時 2019-11-26 08:03:24
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 772 bytes
コンパイル時間 4,578 ms
コンパイル使用メモリ 74,316 KB
実行使用メモリ 57,776 KB
最終ジャッジ日時 2024-11-06 05:41:09
合計ジャッジ時間 6,787 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
54,252 KB
testcase_01 AC 129 ms
53,980 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 129 ms
54,072 KB
testcase_06 WA -
testcase_07 AC 224 ms
57,776 KB
testcase_08 AC 218 ms
57,704 KB
testcase_09 AC 206 ms
57,032 KB
testcase_10 AC 207 ms
57,480 KB
testcase_11 AC 225 ms
57,424 KB
testcase_12 AC 127 ms
54,112 KB
testcase_13 AC 128 ms
54,308 KB
testcase_14 AC 222 ms
57,548 KB
testcase_15 AC 230 ms
57,672 KB
testcase_16 WA -
testcase_17 AC 190 ms
54,464 KB
testcase_18 AC 225 ms
57,596 KB
testcase_19 AC 185 ms
54,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[][] arrays = new boolean[n][];
		for (int i = 0; i < n; i++) {
		    arrays[i] = getBinary(sc.nextInt());
		}
		long total = 1;
		for (int i = 0; i < 16; i++) {
		    boolean hasTrue = false;
		    for (int j = 0; j < n; j++) {
		        if (arrays[j][i]) {
		            hasTrue = true;
		            break;
		        }
		    }
		    if (hasTrue) {
		        total *= 2;
		    }
		}
		System.out.println(total);
	}
	
	static boolean[] getBinary(int x) {
	    boolean[] ans = new boolean[16];
	    for (int i = 0; i < ans.length; i++) {
	        ans[i] = (x % 2 == 1);
	        x /= 2;
	    }
	    return ans;
	}
}
0