結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-30 13:38:24
言語 Java21
(openjdk 21)
結果
AC  
実行時間 569 ms / 5,000 ms
コード長 530 bytes
コンパイル時間 2,071 ms
コンパイル使用メモリ 74,936 KB
実行使用メモリ 58,744 KB
最終ジャッジ日時 2024-07-01 05:02:01
合計ジャッジ時間 9,045 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
53,952 KB
testcase_01 AC 142 ms
54,036 KB
testcase_02 AC 143 ms
53,728 KB
testcase_03 AC 145 ms
53,796 KB
testcase_04 AC 141 ms
54,000 KB
testcase_05 AC 146 ms
54,056 KB
testcase_06 AC 142 ms
54,200 KB
testcase_07 AC 569 ms
58,368 KB
testcase_08 AC 526 ms
58,388 KB
testcase_09 AC 441 ms
57,708 KB
testcase_10 AC 494 ms
58,504 KB
testcase_11 AC 556 ms
58,500 KB
testcase_12 AC 147 ms
53,716 KB
testcase_13 AC 141 ms
54,088 KB
testcase_14 AC 469 ms
58,440 KB
testcase_15 AC 559 ms
58,744 KB
testcase_16 AC 142 ms
53,964 KB
testcase_17 AC 273 ms
54,636 KB
testcase_18 AC 542 ms
58,516 KB
testcase_19 AC 233 ms
54,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		int a[]=new int[n];
		for(int i=0;i<n;i++) {
			a[i]=scanner.nextInt();
		}
		boolean dp[]=new boolean[1<<14+1];
		dp[0]=true;
		for(int i=0;i<n;i++) {
			for(int j=0;j<1<<14+1;j++) {
				if(dp[j]) {
					dp[j^a[i]]=true;
				}
			}
		}
		int cnt=0;
		for(int i=0;i<1<<14+1;i++) {
			if(dp[i])cnt++;
		}
		System.out.println(cnt);
	}
}
0