結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kou6839kou6839
提出日時 2015-04-27 01:13:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 606 ms / 5,000 ms
コード長 479 bytes
コンパイル時間 1,781 ms
コンパイル使用メモリ 74,536 KB
実行使用メモリ 59,460 KB
最終ジャッジ日時 2024-06-29 01:53:27
合計ジャッジ時間 8,599 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
53,052 KB
testcase_01 AC 103 ms
52,868 KB
testcase_02 AC 116 ms
53,936 KB
testcase_03 AC 111 ms
53,016 KB
testcase_04 AC 121 ms
54,272 KB
testcase_05 AC 122 ms
54,212 KB
testcase_06 AC 135 ms
54,204 KB
testcase_07 AC 606 ms
59,204 KB
testcase_08 AC 519 ms
58,032 KB
testcase_09 AC 423 ms
57,484 KB
testcase_10 AC 445 ms
57,296 KB
testcase_11 AC 563 ms
59,148 KB
testcase_12 AC 131 ms
54,332 KB
testcase_13 AC 109 ms
52,984 KB
testcase_14 AC 445 ms
57,736 KB
testcase_15 AC 556 ms
57,664 KB
testcase_16 AC 123 ms
53,116 KB
testcase_17 AC 270 ms
55,852 KB
testcase_18 AC 547 ms
59,460 KB
testcase_19 AC 216 ms
54,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String[] args){
		// TODO 自動生成されたメソッド・スタブ
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		boolean[] dp = new boolean[1<<15];
		dp[0]=true;
		for(int i=0;i<n;i++){
			int t = sc.nextInt();
			for(int j=0;j<(1<<15);j++){
				if(dp[j]){
					dp[j^t]=true;
				}
			}
		}
		int ans=0;
		for(int i=0;i<(1<<15);i++){
			if(dp[i]) ans++;
		}
		System.out.println(ans);
	}
}
0