結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー YamaKasaYamaKasa
提出日時 2018-07-27 19:34:38
言語 Java21
(openjdk 21)
結果
RE  
実行時間 -
コード長 577 bytes
コンパイル時間 1,923 ms
コンパイル使用メモリ 74,692 KB
実行使用メモリ 47,104 KB
最終ジャッジ日時 2024-07-04 13:33:11
合計ジャッジ時間 7,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
40,092 KB
testcase_01 AC 123 ms
41,388 KB
testcase_02 AC 126 ms
41,216 KB
testcase_03 AC 125 ms
40,984 KB
testcase_04 AC 108 ms
40,084 KB
testcase_05 AC 126 ms
41,304 KB
testcase_06 AC 123 ms
41,144 KB
testcase_07 RE -
testcase_08 AC 361 ms
46,872 KB
testcase_09 AC 331 ms
45,680 KB
testcase_10 AC 338 ms
46,808 KB
testcase_11 AC 374 ms
47,104 KB
testcase_12 RE -
testcase_13 AC 117 ms
41,316 KB
testcase_14 AC 374 ms
46,968 KB
testcase_15 AC 383 ms
47,028 KB
testcase_16 AC 117 ms
40,624 KB
testcase_17 AC 231 ms
42,940 KB
testcase_18 RE -
testcase_19 AC 175 ms
42,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		int max = (int)Math.pow(2, 14);
		int []dp = new int[max];
		Scanner scan = new Scanner(System.in);
		int N = scan.nextInt();
		int []A = new int[N];
		for(int i = 0; i < N; i++) {
			A[i] = scan.nextInt();
			dp[A[i]] = 1;
		}
		scan.close();
		for(int i = 0; i < N; i++) {
			for(int j = 0; j < max; j++) {
				if(dp[j] != 0) {
					dp[A[i] ^ j] = 1;
				}
			}
		}
		int cnt = 0;
		for(int i = 0; i< max; i++) {
			if(dp[i] != 0) {
				cnt++;
			}
		}
		System.out.println(cnt);
	}
}
0