結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー spaciaspacia
提出日時 2016-01-17 18:50:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 437 ms / 5,000 ms
コード長 848 bytes
コンパイル時間 2,303 ms
コンパイル使用メモリ 78,220 KB
実行使用メモリ 48,252 KB
最終ジャッジ日時 2024-06-29 12:35:16
合計ジャッジ時間 6,342 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
48,252 KB
testcase_01 AC 52 ms
36,636 KB
testcase_02 AC 59 ms
37,536 KB
testcase_03 AC 58 ms
37,908 KB
testcase_04 AC 49 ms
37,248 KB
testcase_05 AC 69 ms
37,608 KB
testcase_06 AC 52 ms
37,240 KB
testcase_07 AC 431 ms
39,916 KB
testcase_08 AC 360 ms
39,672 KB
testcase_09 AC 275 ms
39,416 KB
testcase_10 AC 304 ms
39,668 KB
testcase_11 AC 383 ms
39,904 KB
testcase_12 AC 74 ms
37,912 KB
testcase_13 AC 47 ms
37,112 KB
testcase_14 AC 339 ms
40,596 KB
testcase_15 AC 437 ms
39,716 KB
testcase_16 AC 68 ms
37,216 KB
testcase_17 AC 199 ms
40,412 KB
testcase_18 AC 409 ms
39,664 KB
testcase_19 AC 166 ms
40,040 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.*;

class Main {
	
	public static void out (Object o) {
		System.out.println(o);
	}
	
	public static void main (String[] args) throws IOException {
		BufferedReader br = 
			new BufferedReader(new InputStreamReader(System.in));
		
		int max = 1 << 15;
		boolean[] dp = new boolean[max];
		boolean[] check = new boolean[max];
		
		int n = Integer.parseInt(br.readLine());
		String[] line = br.readLine().split(" ");
		int[] nums = new int[n];
		for (int i = 0; i < n; i++) nums[i] = Integer.parseInt(line[i]);
		
		for (int i = 0; i < n; i++) {
			dp[nums[i]] = true;
			for (int j = 0; j < max; j++) {
				if (!dp[j]) continue;
				dp[j^nums[i]] = true;
				check[j^nums[i]] = true;
			}
			Arrays.fill(check , false);
		}
		
		int ans = 0;
		for (int i = 0; i < max; i++)
			if (dp[i]) ans++;
		
		out(ans);
	}
}
0