結果

問題 No.183 たのしい排他的論理和(EASY)
ユーザー cielciel
提出日時 2015-04-17 18:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 536 ms / 5,000 ms
コード長 108 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 62,552 KB
最終ジャッジ日時 2024-06-29 01:46:48
合計ジャッジ時間 5,156 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
59,820 KB
testcase_01 AC 42 ms
59,824 KB
testcase_02 AC 41 ms
60,580 KB
testcase_03 AC 39 ms
59,480 KB
testcase_04 AC 39 ms
58,940 KB
testcase_05 AC 40 ms
59,064 KB
testcase_06 AC 38 ms
60,356 KB
testcase_07 AC 493 ms
61,584 KB
testcase_08 AC 495 ms
61,448 KB
testcase_09 AC 359 ms
61,300 KB
testcase_10 AC 407 ms
60,912 KB
testcase_11 AC 513 ms
61,784 KB
testcase_12 AC 40 ms
60,348 KB
testcase_13 AC 36 ms
58,760 KB
testcase_14 AC 420 ms
62,072 KB
testcase_15 AC 536 ms
62,552 KB
testcase_16 AC 43 ms
60,352 KB
testcase_17 AC 156 ms
61,140 KB
testcase_18 AC 471 ms
61,696 KB
testcase_19 AC 92 ms
61,076 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=32768
h=[1]+[0]*M
input()
for e in map(int,input().split()):
 for i in range(M):h[e^i]|=h[i]
print(sum(h))
0