結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー cielciel
提出日時 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
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,992 KB
testcase_01 AC 45 ms
53,504 KB
testcase_02 AC 49 ms
61,440 KB
testcase_03 AC 46 ms
59,904 KB
testcase_04 AC 41 ms
53,120 KB
testcase_05 AC 47 ms
62,976 KB
testcase_06 AC 41 ms
53,504 KB
testcase_07 AC 4,644 ms
175,544 KB
testcase_08 AC 2,318 ms
120,676 KB
testcase_09 AC 1,595 ms
105,728 KB
testcase_10 AC 1,913 ms
113,152 KB
testcase_11 AC 2,503 ms
124,596 KB
testcase_12 AC 49 ms
67,072 KB
testcase_13 AC 39 ms
53,248 KB
testcase_14 AC 51 ms
64,128 KB
testcase_15 AC 2,614 ms
123,264 KB
testcase_16 AC 46 ms
59,904 KB
testcase_17 AC 625 ms
89,244 KB
testcase_18 AC 3,575 ms
161,392 KB
testcase_19 AC 334 ms
82,944 KB
権限があれば一括ダウンロードができます

ソースコード

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