結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー kou6839kou6839
提出日時 2015-04-27 01:06:40
言語 Java21
(openjdk 21)
結果
AC  
実行時間 2,392 ms / 5,000 ms
コード長 505 bytes
コンパイル時間 2,054 ms
コンパイル使用メモリ 75,256 KB
実行使用メモリ 51,012 KB
最終ジャッジ日時 2024-07-05 03:27:31
合計ジャッジ時間 16,898 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
41,220 KB
testcase_01 AC 112 ms
41,504 KB
testcase_02 AC 155 ms
42,684 KB
testcase_03 AC 131 ms
41,564 KB
testcase_04 AC 112 ms
41,468 KB
testcase_05 AC 150 ms
43,104 KB
testcase_06 AC 127 ms
41,460 KB
testcase_07 AC 2,392 ms
51,012 KB
testcase_08 AC 1,413 ms
48,832 KB
testcase_09 AC 1,023 ms
49,136 KB
testcase_10 AC 1,206 ms
48,924 KB
testcase_11 AC 1,491 ms
48,916 KB
testcase_12 AC 189 ms
46,720 KB
testcase_13 AC 113 ms
39,960 KB
testcase_14 AC 230 ms
45,824 KB
testcase_15 AC 1,517 ms
48,876 KB
testcase_16 AC 132 ms
41,572 KB
testcase_17 AC 558 ms
48,688 KB
testcase_18 AC 2,114 ms
50,700 KB
testcase_19 AC 397 ms
47,792 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();
		Set<Integer> set = new HashSet<>();
		set.add(0);
		for(int i=0;i<n;i++){
			int t = sc.nextInt();
			ArrayList<Integer> al = new ArrayList<>();
			for(Integer j:set){
				int waa=t^j;
				if(!set.contains(waa))al.add(waa);
			}
			for(int ss:al) set.add(ss);
		}
		System.out.println(set.size());
	}
}
0