結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー cielciel
提出日時 2015-04-17 15:16:13
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 135 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 68,352 KB
最終ジャッジ日時 2024-07-04 15:34:27
合計ジャッジ時間 3,740 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,880 KB
testcase_01 AC 42 ms
58,240 KB
testcase_02 AC 43 ms
58,752 KB
testcase_03 AC 42 ms
59,008 KB
testcase_04 AC 42 ms
58,624 KB
testcase_05 AC 43 ms
58,816 KB
testcase_06 AC 42 ms
58,624 KB
testcase_07 RE -
testcase_08 AC 280 ms
61,312 KB
testcase_09 AC 213 ms
60,800 KB
testcase_10 AC 246 ms
60,928 KB
testcase_11 AC 304 ms
60,928 KB
testcase_12 RE -
testcase_13 AC 41 ms
58,112 KB
testcase_14 AC 255 ms
59,904 KB
testcase_15 AC 313 ms
60,672 KB
testcase_16 AC 44 ms
58,624 KB
testcase_17 AC 105 ms
60,288 KB
testcase_18 RE -
testcase_19 AC 75 ms
60,032 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
M=16384
h=[1]+[0]*(M-1)
input()
a=map(int,input().split())
for e in a:
	for i in range(M): h[e^i]|=h[i]
print(sum(h))
0