結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー cielciel
提出日時 2015-04-17 15:17:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 5,000 ms
コード長 135 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 61,440 KB
最終ジャッジ日時 2024-06-29 01:45:47
合計ジャッジ時間 5,105 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
58,880 KB
testcase_01 AC 39 ms
59,264 KB
testcase_02 AC 39 ms
58,880 KB
testcase_03 AC 38 ms
58,880 KB
testcase_04 AC 37 ms
58,752 KB
testcase_05 AC 39 ms
59,264 KB
testcase_06 AC 39 ms
58,752 KB
testcase_07 AC 478 ms
60,928 KB
testcase_08 AC 480 ms
61,184 KB
testcase_09 AC 341 ms
60,288 KB
testcase_10 AC 416 ms
60,288 KB
testcase_11 AC 534 ms
60,672 KB
testcase_12 AC 43 ms
58,880 KB
testcase_13 AC 40 ms
58,496 KB
testcase_14 AC 427 ms
60,032 KB
testcase_15 AC 529 ms
61,440 KB
testcase_16 AC 39 ms
58,880 KB
testcase_17 AC 146 ms
59,904 KB
testcase_18 AC 462 ms
61,056 KB
testcase_19 AC 91 ms
60,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
M=32768
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