結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ぴろずぴろず
提出日時 2015-04-17 16:51:08
言語 Java21
(openjdk 21)
結果
AC  
実行時間 235 ms / 5,000 ms
コード長 540 bytes
コンパイル時間 3,832 ms
コンパイル使用メモリ 75,184 KB
実行使用メモリ 49,816 KB
最終ジャッジ日時 2024-06-29 01:46:26
合計ジャッジ時間 7,112 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 95 ms
41,464 KB
testcase_01 AC 111 ms
41,500 KB
testcase_02 AC 139 ms
41,940 KB
testcase_03 AC 124 ms
41,672 KB
testcase_04 AC 117 ms
41,600 KB
testcase_05 AC 151 ms
43,112 KB
testcase_06 AC 108 ms
41,236 KB
testcase_07 AC 235 ms
49,416 KB
testcase_08 AC 218 ms
46,052 KB
testcase_09 AC 208 ms
46,304 KB
testcase_10 AC 212 ms
46,392 KB
testcase_11 AC 220 ms
46,828 KB
testcase_12 AC 162 ms
47,256 KB
testcase_13 AC 99 ms
41,340 KB
testcase_14 AC 185 ms
45,516 KB
testcase_15 AC 213 ms
46,628 KB
testcase_16 AC 113 ms
41,568 KB
testcase_17 AC 190 ms
45,160 KB
testcase_18 AC 228 ms
49,816 KB
testcase_19 AC 183 ms
44,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package no183;

import java.util.HashSet;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int[] a = new int[n];
		for(int i=0;i<n;i++) {
			a[i] = sc.nextInt();
		}
		HashSet<Integer> hs = new HashSet<>();
		hs.add(0);
		for(int i=0;i<n;i++) {
			if (!hs.contains(a[i])) {
				HashSet<Integer> hs2 = new HashSet<>();
				for(int j:hs) {
					hs2.add(a[i] ^ j);
				}
				hs.addAll(hs2);
			}
		}
		System.out.println(hs.size());
	}
}
0