結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー htensaihtensai
提出日時 2019-11-26 09:23:34
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 435 bytes
コンパイル時間 2,816 ms
コンパイル使用メモリ 75,412 KB
実行使用メモリ 75,328 KB
最終ジャッジ日時 2024-11-06 08:29:43
合計ジャッジ時間 10,429 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,076 KB
testcase_01 AC 135 ms
53,992 KB
testcase_02 AC 159 ms
54,368 KB
testcase_03 AC 160 ms
54,068 KB
testcase_04 AC 135 ms
54,108 KB
testcase_05 AC 174 ms
56,456 KB
testcase_06 AC 134 ms
54,216 KB
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		HashSet<Integer> set = new HashSet<>();
		set.add(0);
		for (int i = 0; i < n; i++) {
		    HashSet<Integer> tmp = new HashSet<>();
		    int x = sc.nextInt();
		    for (int y : set) {
		        tmp.add(x ^ y);
		    }
		    set.addAll(tmp);
		}
		System.out.println(set.size());
	}
}
0