結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー hhgfhn1hhgfhn1
提出日時 2018-10-30 12:45:00
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 540 bytes
コンパイル時間 2,011 ms
コンパイル使用メモリ 75,052 KB
実行使用メモリ 90,116 KB
最終ジャッジ日時 2024-11-19 10:32:40
合計ジャッジ時間 64,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
88,696 KB
testcase_01 AC 106 ms
88,576 KB
testcase_02 AC 141 ms
47,252 KB
testcase_03 AC 119 ms
90,048 KB
testcase_04 AC 111 ms
89,896 KB
testcase_05 AC 145 ms
47,420 KB
testcase_06 AC 112 ms
90,116 KB
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 AC 157 ms
43,548 KB
testcase_13 AC 116 ms
41,316 KB
testcase_14 TLE -
testcase_15 TLE -
testcase_16 AC 114 ms
41,364 KB
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

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

public class Main {

	@SuppressWarnings("resource")
	public static void main(String args[]) {
		Scanner scanner = new Scanner(System.in);
		int n=scanner.nextInt();
		Set<Integer>set=new HashSet<>();
		int a[]=new int[n];
		for(int i=0;i<n;i++) {
			a[i]=scanner.nextInt();
		}
		for(int i=0;i<Math.pow(2, n);i++) {
			int tmp=0;
			for(int j=0;j<n;j++) {
				if((i>>j&1)==1) {
					tmp^=a[j];
				}
			}
			set.add(tmp);
		}
		System.out.println(set.size());
	}
}
0