結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー ciel
提出日時 2015-04-17 08:04:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 4,644 ms / 5,000 ms
コード長 173 bytes
コンパイル時間 167 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 175,544 KB
最終ジャッジ日時 2024-06-29 01:44:51
合計ジャッジ時間 21,548 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 2
other AC * 18
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from collections import defaultdict
h={0}
input()
a=map(int,input().split())
for e in a:
	b=[]
	for f in h:b.append(f^e)
	for f in b:h.add(f)
print(len(h))
0