結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kenkooookenkoooo
提出日時 2015-04-17 23:59:30
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,032 ms / 5,000 ms
コード長 587 bytes
コンパイル時間 1,844 ms
コンパイル使用メモリ 74,508 KB
実行使用メモリ 58,820 KB
最終ジャッジ日時 2024-06-29 01:48:12
合計ジャッジ時間 16,948 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 110 ms
53,692 KB
testcase_01 AC 104 ms
53,640 KB
testcase_02 AC 189 ms
53,400 KB
testcase_03 AC 127 ms
53,436 KB
testcase_04 AC 116 ms
54,112 KB
testcase_05 AC 621 ms
54,344 KB
testcase_06 AC 128 ms
54,112 KB
testcase_07 AC 2,032 ms
58,748 KB
testcase_08 AC 1,074 ms
58,804 KB
testcase_09 AC 807 ms
57,020 KB
testcase_10 AC 1,045 ms
58,636 KB
testcase_11 AC 1,074 ms
58,752 KB
testcase_12 AC 1,153 ms
53,224 KB
testcase_13 AC 118 ms
52,980 KB
testcase_14 AC 190 ms
57,452 KB
testcase_15 AC 1,088 ms
58,820 KB
testcase_16 AC 155 ms
54,004 KB
testcase_17 AC 1,101 ms
55,100 KB
testcase_18 AC 2,027 ms
58,776 KB
testcase_19 AC 823 ms
54,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int N = sc.nextInt();
		boolean[] dp = new boolean[1 << 14 + 1];
		for (int i = 0; i < N; i++) {
			dp[sc.nextInt()] = true;
		}
		sc.close();

		for (int i = 0; i < dp.length; i++) {
			if (!dp[i]) {
				continue;
			}
			for (int j = 0; j < dp.length; j++) {
				if (dp[j]) {
					dp[i ^ j] = true;
				}
			}
		}

		int ans = 0;
		for (int i = 0; i < dp.length; i++) {
			if (dp[i]) {
				ans++;
			}
		}
		System.out.println(ans);

	}
}
0