結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー tabataba
提出日時 2016-04-16 22:08:18
言語 Python2
(2.7.18)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 8,224 KB
最終ジャッジ日時 2024-10-04 10:20:42
合計ジャッジ時間 1,361 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,400 KB
testcase_01 AC 11 ms
6,272 KB
testcase_02 AC 14 ms
7,424 KB
testcase_03 AC 12 ms
6,656 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 15 ms
7,684 KB
testcase_06 AC 10 ms
6,272 KB
testcase_07 WA -
testcase_08 AC 41 ms
8,136 KB
testcase_09 AC 78 ms
8,092 KB
testcase_10 AC 38 ms
8,072 KB
testcase_11 AC 83 ms
8,224 KB
testcase_12 WA -
testcase_13 AC 10 ms
6,400 KB
testcase_14 AC 12 ms
6,272 KB
testcase_15 AC 108 ms
8,224 KB
testcase_16 AC 11 ms
6,400 KB
testcase_17 AC 50 ms
7,920 KB
testcase_18 WA -
testcase_19 AC 29 ms
7,844 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=input()
a=set(map(int,raw_input().split()))
x=set([0])
for i in a:
	for j in x.copy():
		x.add(j^i)
	if len(x)==16384:
		break
#print x
print len(x)
0